gpt4 book ai didi

java - Selenium:setHeadless() 对 ChromeDriver 没有影响

转载 作者:行者123 更新时间:2023-11-30 06:22:10 25 4
gpt4 key购买 nike

我正在尝试在 headless mode 中使用 Chrome用于 Selenium 测试。这是我所做的:

public static void main(String[] args) throws Exception {
RemoteWebDriver driver = new ChromeDriver(new ChromeOptions().setHeadless(true));
try {
driver.navigate().to("https://example.com/");
File file = driver.getScreenshotAs(OutputType.FILE);
Files.copy(file.toPath(), Paths.get("target/screenshot.png"), StandardCopyOption.REPLACE_EXISTING);

// adding a delay to visually check whether there is a browser window
Thread.sleep(1000);
} finally {
driver.close();
}
}

我在 ChromeOptions 实例上使用 setHeadless(true),但是当我运行它时,Chrome 窗口会弹出。 Chrome 似乎忽略了 headless 设置。

问题是:为什么 Chrome 会忽略该设置以及如何使其尊重该设置?

我有 Chrome 63.0.3239.108,一个官方 64 位版本,在 Ubuntu Linux 16.04 下。 Selenium 的版本为 3.8.1。

这是我的pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.rpuch.test</groupId>
<artifactId>test-selenium-headless-chrome</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>

</project>

该项目可在 Github 上获取:https://github.com/rpuch/test-selenium-headless-chrome

最佳答案

事实证明,我的系统中安装的 chromedriver 有点过时:它的版本为 2.30。可能它不支持“ headless ”功能(这在 Chrome 本身中是最近才出现的)。

使用最新版本的chromedriver (2.34) 一切按预期工作:我没有看到任何浏览器窗口,但屏幕截图已成功创建。

关于java - Selenium:setHeadless() 对 ChromeDriver 没有影响,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47900467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com