It is recommended to use Maven to configure your Java project.
In a Java Maven project, you need to add a dependency to the Maven settings file (pom.xml) using the examples below:
<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>
<dependencies>
<dependency>
<groupId>com.neotys.selenium</groupId>
<artifactId>neotys-selenium-proxy</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.53.0</version>
</dependency>
</dependencies>
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:
jar-with-dependencies