Tagged: TestNg

Selenium Grid Node

Configure node by using JSON file

In the previous post, we have seen how to configure hub and nodes. In this post, we will see how to configure node by using JSON file. We can mention all the configuration details...

Listenerrs Testng

Listeners in TestNG

In the previous post, we have learnt about dataProvider in TestNG. In this post, we will learn about Listeners in TestNG which is a very important concept in TestNG. What is Listeners? As it...

Dataprovider in TestNG

DataProvider in TestNG

In the previous post, we have learnt about parameters annotation in TestNG.In this post , we will learn another way to perform parameterization in TestNG. Apart from Parameters, there is another way to achieve parameterization which is...

TestNG output multiple scope

Parameters in TestNG

In the previous post, we have learnt about assertions and reporting in TestNG. In this post, we will learn about parameters in TestNG. As we know, parameterization plays very important role in automation testing....

Assert report

Assertions and Reporting in TestNG

In the previous post, we have learnt how to skip test case and create dependency between test cases. In this post, we will learn about assertions and Reporting in TestNG. All test cases must...

Exclude keyword in TestNg

Grouping of Test Cases in TestNG

In the previous post, we have seen how to prioritize the test cases in TestNG. In this post, we will learn about Grouping of Test Cases in TestNG. In TestNG , we have one...

prioritization In testNG

Prioritizing of Test Cases in TestNG

In the previous post, we have seen the sequence of annotation execution. In this post, we will learn about Prioritizing of Test Cases in TestNG. This is obvious in testing that we have multiple test...

TestSuite in TestNG

Building a Test Suite in TestNG

In the previous post, we have learnt how to write a program in TestNG. In this post, we will see what is a TestSuite and its usage in TestNG. What is a Test Suite?...

TestNG Program

Writing First Program with TestNG

In the previous post, we have learnt about TestNG annotations. In this Post, we will be writing First Program with TestNG. Prerequisite: TestNG should be installed with Eclipse as shown in this post. Let’s understand...