我正在使用Jenkins在奴隶机器上执行selenium脚本,我遇到了错误。
“您使用的是不受支持的命令行标志: - 忽略证书错误“。
相同的脚本在我的本地使用相同的chromedriver.exe文件正常工作。请注意,我已将chromedriver.exe文件放在脚本启动它的单独文件夹中。
Chrome Version:59.0.3071.115
Selenium Version:2.52.0
答案 0 :(得分:0)
ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.addArguments("--test-type");// this is the one that helped
WebDriver driver = new ChromeDriver(chromeOptions);
driver.get("https://www.google.com");
这解决了类似的问题