我正在尝试使用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();
}
}
我在setHeadless(true)
个实例上使用ChromeOptions
,但是当我运行此操作时,Chrome窗口会弹出。看起来Chrome忽略了无头的设置。
问题是:为什么Chrome会忽略该设置以及如何尊重它?
我在Ubuntu Linux 16.04下使用Chrome 63.0.3239.108,这是一个官方的64位版本。 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
答案 0 :(得分:1)
原来,我系统中安装的chromedriver有点过时了:版本2.30。可能它不支持“无头”功能(这在Chrome本身很近)。
使用最新版本的chromedriver(2.34),一切都按预期工作:我没有看到任何浏览器窗口,但是屏幕截图已成功创建。
答案 1 :(得分:0)
Chrome中的无头功能在版本59之后按照google实施。 ChromeDriver v2.30应支持此功能,但根据上述参考,
ChromeDriver 2.32使用Chrome 61,适用于无头Chrome。