Selenium - 接受不受信任的证书

时间:2017-01-21 17:40:11

标签: selenium

我使用selenium执行以下代码:

FirefoxProfile profile = new FirefoxProfile();
profile.AcceptUntrustedCertificates = true;

我需要知道它接受不受信任的证书是什么(它在选项中有什么变化?如何手动完成它,我的意思是我打开Firefox并修改了它的属性?)

原因是此属性解决了问题,但我需要能够对不受selenium对象控制的浏览器执行此操作。

1 个答案:

答案 0 :(得分:0)

它应该是配置文件中采用布尔值的方法!

profile.setAcceptUntrustedCertificates(true)

http://learn-automation.com/handle-untrusted-certificate-selenium/