0

自動化にwatir-webdriverを使用すると、Firefoxの「信頼できない接続」を処理できません。すでにこれを試しました:

 require 'watir-webdriver'
 profile = Selenium::WebDriver::Firefox::Profile.new
 profile.assume_untrusted_certificate_issuer = false
 browser = Watir::Browser.new(:firefox, :profile => profile)
 browser.goto("http://xxx.xxx.xxx.com)

それでも同じ結果が得られますか? どんな助けでも大歓迎です...

4

2 に答える 2

1

これは私のために働いた:

   @profile=Selenium::WebDriver::Firefox::Profile.from_name "default"
   @profile.assume_untrusted_certificate_issuer=false
   @profile.secure_ssl = true 
   browser = Watir::Browser.new :firefox, :profile => @profile
于 2012-08-29T12:20:11.413 に答える