我正在尝试在ubuntu上使用Maven运行硒测试。我对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>


我已经从突触管理器安装了xvfb。但不确定是否需要设置更多内容。谁能给我一些光。

谢谢

最佳答案

我有一个配置与selenium-maven-plugin 1.1版成功运行的配置几乎完全相同。也许您可以测试此旧版本。您收到什么错误消息?

10-04 14:49