ChromeOptions --headless在Selenium 3.5.3中不起作用

时间:2019-08-07 12:13:58

标签: selenium google-chrome selenium-webdriver webdriver selenium-chromedriver

我在自动化工具中使用了硒3.5.3,并将chrome驱动程序版本更新为76。我的问题是我设置的chrome选项无效。

我在Windows 10机器上尝试过。

ChromeOptions options = new ChromeOptions();
options.addArguments("--headless", "--disable-gpu", "--window-size=1366,768");
DesiredCapability chrome = new DesiredCapability().chrome();
chrome.setCapability(ChromeOptions.CAPABILITY, options);
driver = new ChromeDriver(chrome);
driver.get("https://bing.com");
driver.quit();

在上面的代码中,我试图在无头的chrome中运行。但这没有效果,浏览器正在启动并显示执行情况。

chrome headless在硒3.5.3和chrome驱动程序2.46下工作正常

enter image description here

0 个答案:

没有答案