TestNG Introduction
TestNG Introduction: TestNG is a unit test framework designed for testing needs. It is inspired from JUnit by adding new functionalities which made TestNG more powerful than other unit test Read more »
TestNG Installation
TestNG Installation: Follow the below steps to install TestNG in Eclipse IDE . There are two ways in installing TestNG in Eclipse First Way on installing Eclipse is using “Install Read more »
DataProvider in TestNG
DataProvider in TestNG DataProvider marks a method as supplying data for a test method. The annotated method must return an Object[][] where each Object[] can be assigned the parameter list Read more »
TestNG Asserts
TestNG Asserts TestNG Asserts are the most frequently used methods while creating Selenium Scripts. Let’s see Assertions in TestNG and where to use them. TestNG Asserts help us to verify Read more »
TestNG Tutorial – Complete Guide
TestNG Tutorial – Complete Guide In this TestNG Tutorial, you will learn how to work with the TestNG and implement it while working with Selenium. What is TestNG? TestNG Read more »
TestNG Introduction
TestNG Introduction: TestNG is a unit test framework designed for testing needs. It is inspired from JUnit by adding new functionalities which made TestNG more powerful than other unit test Read more »
TestNG Annotations
TestNG Annotations The below are the different annotations available in TestNG TestNG Annotations: @BeforeSuite: This annotation method will execute before all tests in this suite @AfterSuite:This annotation method will execute after Read more »
TestNG Interview Questions
TestNG Interview Questions Most Popular TestNG Interview Questions: What is TestNG? TestNG is a testing framework designed to simplify a broad range of testing needs, from unit testing to integration Read more »
How To Create TestNG XML File And Execute TestNG.XML File
How To Create TestNG XML File And Execute TestNG.XML File In this tutorial, you will learn How to Create TestNG XML file and how to execute Test cases from TestNG.XML Read more »
Ignore Tests in TestNG
Ignore Tests in TestNG In TestNG, we can ignore / skip test’s based on your requirement. We have multiple ways to Skip a test based on our requirement. We can Read more »