我正在尝试设置 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)
一个建议?在此先感谢您的帮助。