2
私はubuntuでmavenを使用してセレンテストを実行しようとしています。私は以下の設定をmavenに持っています:ubuntuでselenium xvfbを実行中11.04
<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をインストールしました。しかし、私はより多くのものをセットアップする必要があるかどうかはわかりません。誰も私に優しさを見せることができますか?
おかげ