Plugin Documentation
Goals available for this plugin:
| Goal | Description |
|---|---|
| selenium:help | Display help information on selenium-maven-plugin. Call mvn selenium:help -Ddetail=true -Dgoal=<goal-name>to display parameter details. |
| selenium:selenese | Run a suite of HTML Selenese tests. |
| selenium:start-server | Start the Selenium server. |
| selenium:stop-server | Stop the Selenium server. |
| selenium:xvfb | Starts an Xvfb instance suitable for handling X11 displays for
headless systems. Use this in combonation with the
start-server goal to allow browsers to be launched on
headless unix systems.
Optionally uses 'xauth' to setup authentication for the Xvfb instance to allow running tests using the frame buffer server when another X server is already running. |
System Requirements
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 2.0.9 |
| JDK | 1.4 |
| Memory | No minimum requirement. |
| Disk Space | No minimum requirement. |
Usage
You should specify the version in your project's plugin configuration:
<project>
...
<build>
<!-- To define the plugin version in your parent POM -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>selenium-maven-plugin</artifactId>
<version>2.2</version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>selenium-maven-plugin</artifactId>
<version>2.2</version>
</plugin>
...
</plugins>
</build>
...
</project>
For more information, see "Guide to Configuring Plug-ins"