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>

我也有货物设置,效果很好。然而,启动服务器目标运行没有问题,但是当 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 回答