Running automated tests in parallel can be a time saver. When we have TestNG tests, we have multiple options for running our tests in such a way. We only need to perform a few...
When we create our automated tests, we don't only want to run them in one test environment. We also don't want to create one automated test per each test environment. However, we...
In this post, we will discuss working with all new TestProject OpenSDK to write native Selenium code of an existing code which is powered by the following: Selenium WebDriver...
Selenium is the leading open source solution for web test automation, and according to our recent State of Open Source Testing Survey, Selenium is without a doubt the king of the...
TestNG is a popular test framework that needs no introduction in the JVM (Java virtual machine) ecosystem and can be used for automating your tests regardless of their size, from...
In this 3rd TestNG article, we will explore Dependency Testing. Dependency Testing allows a single Test Method to depend on one or more Test Methods. This is a valuable feature...
In this 2nd TestNG article, we will dive into Data Driven Testing. Data Driven Testing is when data is stored in a data source and then used as input for a Test Method. As...
When the Cucumber Scenarios are atomic (having no dependency on each other), there is NO point in running the feature files in parallel for faster execution. The scenarios in...