我正在尝试在ubuntu上使用maven运行selenium测试。我有maven的以下配置:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>selenium-maven-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<id>xvfb</id>
<phase>pre-integration-test</phase>
<goals>
<goal>xvfb</goal>
</goals>
</execution>
<execution>
<id>start-selenium</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start-server</goal>
</goals>
<configuration>
<background>true</background>
<port>9876</port>
</configuration>
</execution>
</executions>
</plugin>
我从synaptic manager安装了xvfb。但不确定我是否需要设置更多东西。请有人亲切地向我展示一些亮点。
感谢
答案 0 :(得分:0)
我的配置几乎与使用selenium-maven-plugin 1.1版成功运行的配置完全相同。也许你可以测试这个旧版本。您收到了什么错误消息?