Category: TestNG

Parameterized Test in TestNG

The name Parameterized Test in TestNG signifies that you need to provide the Test data as parameter to the Test method and process them in…

Read More

Execute failed Test case in TestNG

In this section we will discuss on Execute failed Test case in TestNG. Failures in execution of the code are genuine and should be handled…

Read More

Listener in TestNG

Listener in TestNG basically signifies the process how it will listen to the event defined in the Selenium Test and behave accordingly. There are multiple…

Read More

TestNG Dependency

We understood in the Priority section that if you want to run your test in a particular order. What will you do if a test…

Read More

Parallel Execution / Session handling

In this session, we will discuss about the Parallel Execution / Session handling. What you will do if you will face below problem. If you…

Read More

Timeout in TestNG

In this section we will discuss on Timeout in TestNG. If  your test takes longer than the expected time, then test will be terminated and…

Read More

Groups in TestNG

In this section we will discuss on the Groups in TestNG. TestNG is an opensource Testing framework in which you can perform unit testing, Functional…

Read More

Priority in TestNG

In this section we will concentrate on Priority in TestNG. TestNG is a framework which ca n be used to perform Unit Testing, Integration Testing,…

Read More

Exception in TestNG

Exception in TestNG can be described as “Exceptional Event”. An Exception is an event which disrupt the flow of the execution of the application. In…

Read More

Ignore a Test / Skip a test in TestNG

In this section, we will discuss how to ignore a Test / skip a Test in TestNG. Ignoring or Skip a test is so important…

Read More