在Chrome驱动程序selenium中,我们收到错误为非安全数据:,

时间:2017-02-15 11:12:54

标签: java selenium-webdriver selenium-chromedriver selenium2library

在我们打开应用程序的Chrome浏览器中,我们正在获取非安全数据: screenshotLINK

我尝试了不同的解决方案以及下面的代码仍然没有成功!!

String chromeDriverPath = projectLocationPath +“\ Resources \ chromedriver.exe”;

           System.setProperty("webdriver.chrome.driver", chromeDriverPath);
            DesiredCapabilities capabilities = DesiredCapabilities.chrome();
            ChromeOptions options = new ChromeOptions();
            options.addArguments("test-type");
            options.addArguments("--start-maximized");
            options.addArguments("--disable-web-security");
            options.addArguments("--allow-running-insecure-content");
            capabilities.setCapability("chrome.binary",chromeDriverPath);  
            capabilities.setCapability(ChromeOptions.CAPABILITY, options); 
            webdriver = new ChromeDriver(capabilities);  
            driver.get(url); 

我添加了所有必需的功能

网址 - https://tsetigndev123.dev.hfgh.com

2 个答案:

答案 0 :(得分:0)

您已禁用安全性,然后尝试访问安全网址。如果您的意思是在没有安全保护的情况下访问该网站,请将网址更改为http://tsetigndev123dev.hfgh.com(不要在“https”中删除“s”

答案 1 :(得分:0)

有同样的问题。从URL下载最新的chromedriver.exe并将其替换为旧的chromedriver.exe为我解决了问题。

我遇到的基本错误信息是:“无法获得自动扩展”。