firefox木偶绕过安全例外

时间:2016-07-08 00:09:59

标签: selenium webdriver firefox-marionette

我正在使用Marionette / Geckodriver v9.0 for mac with selenium jar 2.53.1。 当它打开firefox 47时,我收到的错误是"您的连接不安全"。 我用来创建驱动程序的代码是:

  FirefoxProfile firefoxProfile = null; 
  firefoxProfile = new FirefoxProfile();
  firefoxProfile.setAcceptUntrustedCertificates(true);
  firefoxProfile.setAssumeUntrustedCertificateIssuer(false);

  DesiredCapabilities capability = DesiredCapabilities.firefox();
  capability.setCapability("marionette", true);
  capability.setCapability(FirefoxDriver.PROFILE, firefoxProfile);
  capability.setCapability("handlesAlerts", true);
  return new MarionetteDriver(capability);

那么,如何将我的网站添加为例外或关闭支票呢?或者它是Marionette还没有实现的功能吗?

2 个答案:

答案 0 :(得分:0)

你现在必须使用开发者版本的每晚构建firefox。它不适用于当前版本。

https://bugzilla.mozilla.org/show_bug.cgi?id=1103196

答案 1 :(得分:0)

Firefox:50.1.0 Gecko Driver:0.13(安装nuget包:Selenium.Firefox.WebDriver.0.13.0)

首先,打开标准的Firefox浏览器,并确保默认的Firefox配置文件已将不安全的站点添加到证书例外列表中。 C#代码如下:

FirefoxProfileManager fpManager = new FirefoxProfileManager();

var profiles = fpManager.ExistingProfiles;
var defaultProfile = fpManager.GetProfile(profiles.First());

driver = new FirefoxDriver(defaultProfile);