Category: Parameterization
How to parse data from XML file in Selenium with Java?
June 22, 2019
There are various ways to use parameterization in Selenium. It depends on the tester which technique he/she is going to use to inject test data in the test case. …
How to read test data from CSV file in Selenium?
February 3, 2019
After this post, we will achieve extra miles in parameterization in the Selenium project. We have discussed test data read operation from excel sheet, write operation to excel sheet, …
TestNG @Factory annotation with @DataProvider in Selenium
November 13, 2018
This is one of the most important tutorials with respect to designing data-driven framework in the Selenium project. The combination of @Factory annotation and @DataProvider annotation helps in many …
@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 …
Read/Write Operations for Properties file in Automation Framework
September 22, 2018
This is another tutorial in the marathon series of tutorials on Parameterization in Selenium WebDriver. We are going to discuss read/write operations of properties file in Selenium. This is …
How to store data from an Excel Sheet with HashMap in Selenium?
September 21, 2018
We are working on the marathon of tutorials to maintain parameterization efficiently. There is a very wide scope of data science and data analytics these days. Experts basically look …
Write data to the excel sheet in Selenium using POI
September 16, 2018
Earlier, we have discussed different techniques to accommodate parameterization in our Selenium automation test. Today we are going to discuss commands (code) to write data to the excel sheet …
Read test data from Excel sheet in Selenium using POI
September 15, 2018
In any test design framework, test data management is the essence. That is why even TestNg has in-built @DataProvider along with Parameterization through the testing.xml file. Earlier we discussed …
Writing test data to the JSON file for Selenium WebDriver
September 9, 2018
Yesterday we discussed JSON data parsing, which means reading test data from JSON. When we are using Excel sheet, we, seldom, write back data to the sheet. Similarly, today …