Selenium plugin

The Selenium plugin allow to run your test in a real browser. The main advantage is the JavaScript support is perfectly identical to your target browser (of course). The main drawbacks are it is slooooooow and can't run on a headless server.

This plugin is still in development. In fact not all test cases works. Feel free to contribute

HowTo manage dependencies with Maven 2

Just add the following dependency to your pom:

...
<dependencies>
    ...
    <dependency>
        <groupId>net.sourceforge.jwebunit</groupId>
        <artifactId>jwebunit-selenium-plugin</artifactId>
        <version>2.5</version>
    </dependency>
    ...
</dependencies>
...