- jbrasileiro
- Posts : 1
Join date : 2011-01-12
SeleniumRC + MAVEN
Wed Jan 12, 2011 11:34 pm
I'm trying to configure Maven (POM.xls) to start selenium-server.jar automatically. I already tried to use some pluggins like jetty-maven-plugin, selenium-maven-plugin and do so, to start at pre-integration phase.
I tried this one:
I tried this one:
- Code:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dependency-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>Copy</id>
<phase>pre-integration-test</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.openqa.selenium.server</groupId>
<artifactId>selenium-server</artifactId>
<version>1.0-20081010.060147</version>
<type>jar</type>
<outputDirectory>${project.build.directory}</outputDirectory>
<destFileName>selenium-server.jar</destFileName>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>start-Selenium</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo taskname="selenium" message="---------------------------------------------------------"/>
<echo taskname="selenium" message=" Starting Selenium Remote Control "/>
<echo taskname="selenium" message=" Please make sure that FireFox executable is on the PATH "/>
<java jar="${project.build.directory}/selenium-server.jar" fork="yes" spawn="true"/>
<echo taskname="selenium" message="---------------------------------------------------------"/>
</tasks>
</configuration>
</execution>
<execution>
<id>stop-selenium</id>
<phase>post-integration-test</phase>
<configuration>
<tasks>
<echo taskname="selenium" message="---------------------------------------------------------"/>
<echo taskname="selenium" message=" Shutting down Selenium Remote Control "/>
<echo taskname="selenium" message=" DGF Errors during shutdown are expected "/>
<get taskname="selenium"
src="http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer"
dest="result.txt" ignoreerrors="true"/>
<echo taskname="selenium" message="---------------------------------------------------------"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>selenium-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>Start</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start-server</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Permissions in this forum:
You cannot reply to topics in this forum