In this post we would be learning how to install Selenium WebDriver and configure it with Eclipse IDE. Selenium client supports several programming languages, including Java, Python, C#, Ruby, and JavaScript. Here we will be focusing on the Java language-specific client drivers as we intent to work with Eclipse. So […]
Tutorials
The TestNG Test Suite is a collection of test cases that are run together via a “testng.xml” file. As a tester, you can sort the test cases to run in a particular order or perhaps have them dependent on a testcase or a group. Steps to Create a TestNG Test […]
TestNG is an open source automated testing framework that is inspired from JUnit(Java) and NUnit(C#). In this tutorial series, we will cover everything from installation to reporting in TestNG.
Learn how to automatically stop executing a test with Timeout attribute if it gets stuck or takes longer than expected to complete. Timeouts can be set at test level and suite level.
Learn how to use “Priority” parameter with @Test annotation to execute test cases in a sorted order. With “preserve-order” attribute set to false in in testng.xml file, you can make sure that test cases are executed in an alphabetically sorted order.
Learn how to use dependency testing in TestNG with dependOnMethods or dependsOnGroups annotations to make sure a particular method is run only if all the other dependent methods/groups have been successfully executed. If not, the method/group is skipped.
By grouping tests in TestNG, you can separate different sections or features of a project you are working on. Tests can belong to a single or multiple groups. And again, you can have a group of different groups called MetaGroups.
Learn how to use @DataProvider annotation for executing data driven testing in TestNG. With @DataProvider, testers can automatically run a test case multiple times, with different input and validation values. A good example of this is, suppose, you have to test thousands of forms using automation.
@Parameters annotation is used to pass different values to a method at runtime in TestNG. This allows us to run a test case multiple times with different values from testng.xml file. Let’s take a look at the code example to see how this works.
Annotations in TestNG makes code easier to read, understand, and they also allow test cases to be grouped for efficiency. In this post we’ll cover all the annotations available in the framework and also see code examples to understand their execution flow