当前位置: 首页 > 知识库问答 >
问题:

“您正在使用不受支持的命令行标志:--Ignore-Certificate-Errors。”执行selenium脚本时在slave中显示错误

东郭骁
2023-03-14

我正在使用Jenkins在从机中执行selenium脚本,在那里我得到以下错误。

“您使用的命令行标志不受支持:--ignore-certificate-errors。”

Chrome Version:59.0.3071.115
Selenium Version:2.52.0

共有1个答案

胡永逸
2023-03-14
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");

这解决了类似的问题

 类似资料: