Details
Description
I have problems using Selenium Tests on Firefox 26.0.
As I've read on the following URL is a version problem of selenium-server working on Firefox.
https://code.google.com/p/selenium/issues/detail?id=6055
Here's my pom.xml configuration:
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>selenium-maven-plugin</artifactId> <version>2.3</version> <configuration> <browser>*firefox</browser> <suite>src/main/webapp/selenium/test-suite.xhtml</suite> <results>${project.build.directory}/selenium.html</results> <startURL>http://localhost:4444/</startURL> </configuration> <dependencies> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-server</artifactId> <version>2.25.0</version> </dependency> </dependencies> </plugin>