2009-02-03 11 views
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 goal은 문제없이 실행되지만 maven이 셀레늄을 실행하려고 할 때 : 셀렌 목표 :이 예외가 발생합니다 : org.openqa.selenium.server.SeleniumServer (java.lang.Integer, java)에 대해 일치하는 생성자를 찾을 수 없습니다. lang.Boolean, java.lang.Boolean)

제안 사항? 귀하의 도움에 미리 감사드립니다.

답변

4

새 버전을 다운로드하여 해결할 수있는 셀렌 버그입니다.