作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 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/
我正在尝试在 headless mode 中使用 Chrome用于 Selenium 测试。这是我所做的: public static void main(String[] args) throws
我是一名优秀的程序员,十分优秀!