Click here to Skip to main content
15,886,724 members
Everything / TestNG

TestNG

TestNG

Great Reads

by Iqra Ali
The article explains the concept of Sanity Testing and the implementation using TestNG features.
by M Mohammed Afsal
This post will discuss Selenium, how to set it up, and how to use Java to create an automated test script.

Latest Articles

by M Mohammed Afsal
This post will discuss Selenium, how to set it up, and how to use Java to create an automated test script.
by Iqra Ali
The article explains the concept of Sanity Testing and the implementation using TestNG features.

All Articles

Sort by Score

TestNG 

8 Sep 2020 by Iqra Ali
The article explains the concept of Sanity Testing and the implementation using TestNG features.
9 Nov 2023 by M Mohammed Afsal
This post will discuss Selenium, how to set it up, and how to use Java to create an automated test script.
25 Nov 2023 by Member 13958707
I have one utility class as DataManager.java where I have written a method to read data from an excel sheet. public static XSSFWorkbook xssfWorkbook; public static XSSFSheet xssfSheet; public static Object[][] readUserCredentials(String...
25 Nov 2023 by Member 13958707
Use @BeforeMethod annotation instead of @BeforeClass as @BeforeMethod invokes multiple times before execution of each test method and @BeforeClass annotation will run only once before starting all test cases. ...