我正在使用webdriver V 3.0.1和firefox V 46.我正面临一个错误,因为"你的连接不安全".
请帮助我克服这个问题.您可以在下面找到我的代码
System.setProperty("webdriver.gecko.driver","D:\\Software\\Webdriver\\gecko new\\geckodriver-v0.11.1-win64\\geckodriver.exe");
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("network.proxy.type", 0);
profile.setAcceptUntrustedCertificates(true);
profile.setAssumeUntrustedCertificateIssuer(false);
WebDriver driver = new FirefoxDriver(profile);
driver.get("http://qa.applications.marykayintouch.com/Login/Login.aspx");
Run Code Online (Sandbox Code Playgroud)