在 Spock 测试中无法启动 chromedriver
Trouble launching chromedriver in Spock test
我有一个 Maven Web 项目,我正尝试在 Eclipse 下使用 Selenium 和 Chromedriver 运行 几个简单的 Spock Web UI 测试。如果我将以下内容添加到文件的 运行 配置 VM 参数中,我可以 运行 通过单击它并 selecting "Run As>Junit Test" 单独 class 每个测试:
-Dwebdriver.chrome.driver=/Users/mht/ChromeDriver/2.3.1/chromedriver
显然,这是 Chromedriver 在我系统上的位置。然后我尝试在项目级别设置 Maven 构建目标以 运行 测试。我单击项目名称和 select "Run Configurations>Maven Build" 并创建一个 "Verify" 配置以匹配我的 pom.xml 中定义的验证目标。在 "Goals, box I enter "verify" 和 JRE 选项卡上,我还在 VM 参数框中输入 chromedriver 的上述位置。当我 运行 这个目标时,或在命令行类型 "mvn verify" ,我收到以下错误:
geb.driver.DriverCreationException: 无法从回调创建驱动程序 'script15040527017471153797989$_run_closure1@1046d517'
在 com.google.common.base.Preconditions.checkState(Preconditions.java:754)
...
这告诉我测试找不到chromedriver。如果我将 chromedriver 复制到项目的基本目录中,那么测试将 运行 使用验证目标或通过在命令行上键入 "mvn verify"。为什么不设置 chromedriver 位置在 Maven 目标级别不起作用?
我认为这并不重要,但我的 pom 的构建部分是
<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.18</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<useFile>false</useFile>
<includes>
<include>**/*Spec.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>tomcat-run</id>
<goals>
<goal>run-war-only</goal>
</goals>
<phase>pre-integration-test</phase>
<configuration>
<port>9081</port>
<fork>true</fork>
</configuration>
</execution>
<execution>
<id>tomcat-shutdown</id>
<goals>
<goal>shutdown</goal>
</goals>
<phase>post-integration-test</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
默认情况下,maven 参数不会传递给 surefire 和 failsafe 配置。两者都派生了没有这些参数的新 JVM。请参阅有关 argLine
.
的文档 Surefire and Failsafe
所以 mvn verify -DargLine="-Dwebdriver.chrome.driver=/Users/mht/ChromeDriver/2.3.1/chromedriver"
应该适合你。
不过,更好的方法是使用WebDriver Extensions Maven Plugin,它可以用来自动下载合适的驱动程序。然后你可以做一些简单的脚本来通过你的 geb 配置定位驱动程序,或者硬编码已知的相对位置。
顺便说一句,gmaven-plus
插件已过时。
我有一个 Maven Web 项目,我正尝试在 Eclipse 下使用 Selenium 和 Chromedriver 运行 几个简单的 Spock Web UI 测试。如果我将以下内容添加到文件的 运行 配置 VM 参数中,我可以 运行 通过单击它并 selecting "Run As>Junit Test" 单独 class 每个测试:
-Dwebdriver.chrome.driver=/Users/mht/ChromeDriver/2.3.1/chromedriver
显然,这是 Chromedriver 在我系统上的位置。然后我尝试在项目级别设置 Maven 构建目标以 运行 测试。我单击项目名称和 select "Run Configurations>Maven Build" 并创建一个 "Verify" 配置以匹配我的 pom.xml 中定义的验证目标。在 "Goals, box I enter "verify" 和 JRE 选项卡上,我还在 VM 参数框中输入 chromedriver 的上述位置。当我 运行 这个目标时,或在命令行类型 "mvn verify" ,我收到以下错误:
geb.driver.DriverCreationException: 无法从回调创建驱动程序 'script15040527017471153797989$_run_closure1@1046d517' 在 com.google.common.base.Preconditions.checkState(Preconditions.java:754) ...
这告诉我测试找不到chromedriver。如果我将 chromedriver 复制到项目的基本目录中,那么测试将 运行 使用验证目标或通过在命令行上键入 "mvn verify"。为什么不设置 chromedriver 位置在 Maven 目标级别不起作用?
我认为这并不重要,但我的 pom 的构建部分是
<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.18</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<useFile>false</useFile>
<includes>
<include>**/*Spec.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>tomcat-run</id>
<goals>
<goal>run-war-only</goal>
</goals>
<phase>pre-integration-test</phase>
<configuration>
<port>9081</port>
<fork>true</fork>
</configuration>
</execution>
<execution>
<id>tomcat-shutdown</id>
<goals>
<goal>shutdown</goal>
</goals>
<phase>post-integration-test</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
默认情况下,maven 参数不会传递给 surefire 和 failsafe 配置。两者都派生了没有这些参数的新 JVM。请参阅有关 argLine
.
所以 mvn verify -DargLine="-Dwebdriver.chrome.driver=/Users/mht/ChromeDriver/2.3.1/chromedriver"
应该适合你。
不过,更好的方法是使用WebDriver Extensions Maven Plugin,它可以用来自动下载合适的驱动程序。然后你可以做一些简单的脚本来通过你的 geb 配置定位驱动程序,或者硬编码已知的相对位置。
顺便说一句,gmaven-plus
插件已过时。