Configuration and setup in testng

It’s very easy to set up a TestNG project especially when you are using Maven tool to manage the project. Just create a simple maven project as described in articles on how to create a maven project in IntelliJ IDEA Once the maven project is created, all you need to do is add below dependency in POM.xml file. You can find the latest version of TestNG at Maven repository website.
 
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.10</version>
<scope>test</scope>
</dependency> 

Web development and Automation testing

solutions delivered!!