0
我已經使用Selenium 3.4以及Geckodriver v0.18.0。我如何解決硒在Mozilla Firefox 54上的不安全連接
要處理Firefox中的SSL證書,我用硒webdriver的能力:
ProfilesIni profile = new ProfilesIni();
FirefoxProfile myprofile = profile.getProfile("default");
myprofile.setAcceptUntrustedCertificates(true);
myprofile.setAssumeUntrustedCertificateIssuer(false);
driver = new FirefoxDriver(myprofile);
但它畢竟是顯示Firefox的推出後不安全的連接
你能給我們提供一些關於正在使用的URL的線索嗎?更重要的是,我還沒有看到您使用Selenium Webdriver的功能。謝謝 – DebanjanB