TestNG Project Setup
Description on how to prepare a TestNG project to be used in CloudBeat
Plugin Integration
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories><dependency>
<groupId>com.github.oxygenhq</groupId>
<artifactId>cb-framework-plugin-testng</artifactId>
<version>0.10.1</version>
</dependency><build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
</plugins>
</build>Code Level Integration
Working with Selenium
Last updated