How To Group test cases in selenium. I am sure you must have got this question in mind is there any way to group a set of test cases in Selenium, yes we have the TestNG group feature which will allow you to do the same. Grouping in Automation is quite an interesting feature through which you can easily categorize your test cases based on requirements. For Example- If we … [Read more...] about Best and easy way to Group test cases in selenium
TestNG Tutorial
How to install Testng in eclipse using Marketplace
In Selenium you have to use some Unit testing framework like JUnit or TestNG. I will guide you on how you can install TestNG in eclipse using simple steps. TestNG provides different features that reduce enough time for automation tester while automating the script. TestNG provides different methods and collection of classes which we can consume to write an effective … [Read more...] about How to install Testng in eclipse using Marketplace
How to Perform Parallel Execution in Selenium Webdriver using TestNG
In Selenium Webdriver we do not have any feature which will allow us to perform parallel execution so we can take the help of TestNG which will help us to run parallel execution in selenium. This is one of the most frequently asked questions in interviews as well. Benefits of Running parallel execution in selenium It saves execution effort. We can cover a … [Read more...] about How to Perform Parallel Execution in Selenium Webdriver using TestNG
How to execute testng.xml files using Java Program
In this post, we are going to discuss how to execute testng.xml files using Java Program. As we all know in Selenium webdriver can execute multiple test cases using testng.xml file and we can handle all test case execution via testng.xml file. If you are new in testng and not sure about testng.xml file then please check the below youtube video. How to create testng.xml … [Read more...] about How to execute testng.xml files using Java Program
How to create dependency between testcases in Selenium
I am sure you must be confused with Title like How to create a dependency between test cases in Selenium but in this post we will see this through example. In real time, you will come across many situation where you have to create test cases which are dependent on the previous test case. Take an example I have 3 test case. First one which verify login credential and … [Read more...] about How to create dependency between testcases in Selenium