2011-10-17 7 views
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をインストールしました。しかし、私はより多くのものをセットアップする必要があるかどうかはわかりません。誰も私に優しさを見せることができますか?

おかげ

答えて

0

は、私はほぼ正確にセレンのmaven-pluginのバージョン1.1で正常に実行されている同じ構成を有しています。おそらく、この古いバージョンをテストすることができます。どのようなエラーメッセージが表示されますか?

関連する問題