Category: Automation Framework
One Response
Leave a Reply
@Parameters annotation: How to inject test data from testng.xml?
November 4, 2018
Parameterization is the soul of software testing (it also includes automation testing). We have discussed various techniques here (at inviul) to maintain the test data in our Automation Framework. …
Parameterization using @DataProvider Annotation in Selenium
November 2, 2018
Automation framework has prime importance with respect to automation testing. We have discussed Data-driven framework (in recent live session) which exclusively incorporates different sets of test data for testing …
Skip Tests in Selenium at Runtime using TestNG
November 1, 2018
In the previous tutorial, we discussed a technique to ignore tests in Selenium WebDriver with the help of TestNG. Our agenda for this tutorial is about skipping tests at …
@Test(Enabled=false) lets you ignore tests in Selenium TestNG
October 30, 2018
When we are working in Test automation project then we come across a situation where some of our tests are still in progress, that is not in a ready …
TestNG Annotations: Introduction, Importance and their Uses
October 28, 2018
In the previous tutorial on TestNG, we discussed the basics of TestNG Framework and its installation steps along with the significance of having TestNG in Automation testing. Today our …
TestNG Framework: Easy Installation Guide, Introduction & Features
October 15, 2018
4 years ago, I started my testing career and I still remember that I first started with Junit. I was really wondered to use Junit as it was making …
How to configure Selenium Grid using JSON file?
October 12, 2018
We have already discussed in detail about the configuration of the Selenium Grid with the command line. That previous post is the well-described post which covered all the perspectives …
Multithreading helps to run test cases in parallel in Selenium
October 7, 2018
In my previous post, I discussed the parallel execution of multiple test cases through session handling. Today we are going to discuss the same technique through Multithreading. Multithreading in …
Parallel Execution Using Session Handling in Selenium WebDriver
October 6, 2018
We start automation scripting with a single test case; Gradually, we increase the number as the business approves stories. A point comes where our automation pack grows in such …
Selenium Grid- Step by step guide to configure with command line
October 2, 2018
When we are holistically following DevOps and Automation techniques in our project then we come at the stage where our automation test case become so huge in number that …
Automation Testing