如何在selenium

时间:2017-07-28 10:08:51

标签: java selenium firefox

我使用了Selenium 3.4和Geckodriver v0.18.0。

要在Firefox中处理SSL证书,我使用了Selenium Webdriver的功能:

ProfilesIni profile = new ProfilesIni();
FirefoxProfile myprofile = profile.getProfile("default");
myprofile.setAcceptUntrustedCertificates(true);
myprofile.setAssumeUntrustedCertificateIssuer(false);
driver = new FirefoxDriver(myprofile);

但是在firefox启动后它仍然显示出一个不安全的连接

1 个答案:

答案 0 :(得分:0)

以下是您的问题的答案:

根据没有引用SSL证书阻止的网址的问题,以下是绕过 SSL Certificate 的最小代码块。在此代码块中,我们将使用 DesiredCapabilities 类将 CapabilityType ACCEPT_SSL_CERTS 设置为 true 如下:

package certificateIssue;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.remote.CapabilityType;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.annotations.Test;

public class CertificateIssue_Firefox 
{

    @Test
    public void handleCertificate()
    {
        System.setProperty("webdriver.gecko.driver", "C:\\Utility\\BrowserDrivers\\geckodriver.exe");

        DesiredCapabilities cap= new DesiredCapabilities();
        cap.setCapability(CapabilityType.ACCEPT_SSL_CERTS, true);

        WebDriver driver = new FirefoxDriver(cap);
        driver.get("http://www.cacert.org/");

    }
}

如果这回答你的问题,请告诉我。