File f = new File("<Path to chromedriver.exe>");
System.setProperty("webdriver.chrome.driver", f.getAbsolutePath());
WebDriver driver = new ChromeDriver();
driver.get("https://www.codechef.com/problems/FRGTNLNG");
System.out.println(driver.getPageSource());
You are using an unsupported command-line flag: --ignore-certifcate-errors. Stability and security will suffer
我还尝试根据Pass驱动程序ChromeOptions和DesiredCapabilities添加所需的功能(现在已不推荐使用)和ChromeOptions,但同样的错误仍然存在。
提前道谢!
这个错误说明了一切:
You are using an unsupported command-line flag: --ignore-certifcate-errors. Stability and security will suffer
按照最佳编程实践,使用ChromeOptions
类打开正在最大化的Chrome浏览器,禁用信息栏并禁用扩展,如下所示:
System.setProperty("webdriver.chrome.driver", "C:\\path\\to\\chromedriver.exe");
ChromeOptions options = new ChromeOptions();
options.addArguments("start-maximized");
options.addArguments("disable-infobars");
options.addArguments("--disable-extensions");
options.addArguments("--test-type");
options.addArguments("--ignore-certificate-errors");
WebDriver driver = new ChromeDriver(options);
driver.get("https://www.google.co.in");
此外,请执行以下步骤:
浏览器打开时显示下面提到的行- 有人能帮我吗?
问题内容: 使用Python 2.7.5,python模块selenium(2.41.0)和chromedriver(2.9)。 Chrome启动后,会在黄色的弹出栏中显示一条消息:“您正在使用不受支持的命令行标志:-ignore-certificate- errors。稳定性和安全性将受到损害。” 这个简单的例子重现了问题。 如何在python selenium中删除此命令行标志? 问题答案:
使用Python 2.7.5、Python模块selenium(2.41.0)和chromedriver(2.9)。 当Chrome启动时,它会在黄色弹出栏中显示一条消息:“您正在使用一个不受支持的命令行标志:--Ignore-Certifice-Errors。稳定性和安全性将受到影响。”这个简单的例子再现了问题。 如何在python Selenium中删除此命令行标志?
我正在使用Jenkins在从机中执行selenium脚本,在那里我得到以下错误。 “您使用的命令行标志不受支持:--ignore-certificate-errors。”
在RubyMine和chromedriver 2.10中使用Ruby 2.0.0 p481 当Chrome启动时,它会在黄色弹出栏中显示一条消息:“您正在使用一个不受支持的命令行标志:--Ignore-Certifice-Errors。稳定性和安全性将受到影响。”这个简单的例子再现了问题。 对于Java和Python已经回答了这个问题。我到处找了一个Ruby模拟。有人有建议或知道如何将Python
我在Windows7和Windows8操作系统上发现了这一点。