1

私は selenium-maven-plugin をセットアップしようとしていますが、いくつかの問題があります。誰かが私を助けてくれることを願っています。私の構成は次のようになります。

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>selenium-maven-plugin</artifactId>
  <executions>
    <execution>
      <phase>pre-integration-test</phase>
      <goals>
    <goal>start-server</goal>
    <goal>selenese</goal>
      </goals>
      <configuration>
    <background>true</background>
    <browser>*firefox</browser>
    <results>src/test/resources/selenium/result.html</results>
    <startURL>http://localhost/MyProject</startURL>
    <suite>src\test\resources\selenium\Testsuite.html</suite>
      </configuration>
    </execution>
  </executions>
</plugin>

完璧に機能する貨物のセットアップもあります。ただし、start-server ゴールは問題なく実行されますが、maven が selenium:selenese ゴールを実行しようとすると、次の例外が発生します: org.openqa.selenium.server.SeleniumServer(java.lang.Integer, java. lang.Boolean、java.lang.Boolean)

提案?よろしくお願いします。

4

1 に答える 1

4

これは Selenium のバグであり、新しいバージョンをダウンロードすることで修正できます。

于 2009-02-05T11:09:16.637 に答える