Configure the Selenium Java project
It is recommended to use Maven to configure your Java project.
x.y.z stands for the latest version of the dependency. It is available in your Maven project and for download on the Neotys Labs page.
Maven projects
In a Java Maven project, you need to add a dependency to the Maven settings file (pom.xml) using the examples below:
- Repository:
<repositories><repository><id>neotys-public-releases</id><url>http://maven.neotys.com/content/repositories/releases/</url><releases><enabled>true</enabled></releases><snapshots><enabled>false</enabled></snapshots></repository></repositories>- Dependency:
<dependencies><dependency><groupId>com.neotys.selenium</groupId><artifactId>neotys-selenium-proxy</artifactId><version>x.y.z</version></dependency><dependency><groupId>org.seleniumhq.selenium</groupId><artifactId>selenium-java</artifactId><version>x.y.z</version></dependency></dependencies>Non-Maven projects
Before integrating with NeoLoad, test your Selenium script to make sure it is functional.
You can then add the additional JAR below and follow this User Guide to integrate the NeoLoad wrapper.
If your project is not developed using Maven, it is necessary to include:
- the Selenium proxy JAR with dependencies available for download on the Neotys Labs page:
jar-with-dependencies
The Selenium proxy JAR includes Selenium version 2.53.0.
Home