Skip to main content

Selenium - Data Driven Testing

In Automation, we need to runs scripts to test the same functionality with different types of data. This data is usually stored in an excel file and accessed via the script to enter in the Application Under Test.
In QTP, this is done using the DataTable
In Selenium we can use the Apache POI API to do read an excel workbook and write the output to the excel file.

Using the API is quite simple if you understand the basics.
POI - Poor Obfuscation Implementation. This name was humorously given  because Microsoft code was deliberately made difficult to reverse engineer but still it was reverse engineered.

POIFS - Poor Obfuscation Implementation File System. Used to access the input file.

HSSF - Horrible Spreadsheet Format This is used to read and write .xls files

XSSF - XML Spreadsheet Format This is used to read and write .xlsx files.


FileInputStream fs=new FileInputStream("C:\\Users\\Krishna\\selenium workspace\\Data\\firstone.xls");
POIFSFileSystem poi=new POIFSFileSystem(fs);
HSSFWorkbook hw=new HSSFWorkbook(poi);
HSSFSheet hs=hw.getSheet("Global");
Object data[][]=new Object[2][2];
System.out.println(hs.getLastRowNum());// last row number in excel
System.out.println(hs.getPhysicalNumberOfRows());//number of physically defined rows
System.out.println(hs.getRow(0).getLastCellNum()); // last cell number in row
System.out.println(hs.getRow(0).getPhysicalNumberOfCells()); // number of physically defined cells
for(int i=1;i<=hs.getLastRowNum();i++){
for(int j=0;j<hs.getRow(0).getLastCellNum();j++)
{
data[i-1][j]=hs.getRow(i).getCell(j).toString();
System.out.println(data[i-1][j]);
}
}
fs.close();

Use with Junit:
@Parameters
public static Collection<Object[]>(){
return Arrays.asList(data);
//data should be declared static in this case
}
The above code can be used to read data from excel sheet and store it in the object data array.
To understand the code remember the following hierarchy.

Access File -> Open the accessed file using POIFSFileSystem class -> Access the HSSFWorkBook workbook in the POIFSFileSystem -> Access the HSSFSheet sheet in the workbook using getSheet(sheetname) -> Access the row in the sheet using getRow(rownumber) -> Access the cell in the row using getCell(cellnumber)

getLastRowNum () gets the number last row on the sheet. Owing to idiosyncrasies in the excel file format, if the result of calling this method is zero, you can't tell if that means there are zero rows on the sheet, or one at position zero. For that case, additionally call getPhysicalNumberOfRows() to tell if there is a row at position zero or not.





Comments

Popular posts from this blog

How to Install Selenium and execute your first program

You can install and test Selenium using the following steps. All files can be downloaded from  http://www.seleniumhq.org/download/   Download Selenium Server jar file   Download client library java jar file   Download InternetExplorer Driver file   Install eclipse workspace. (download eclipse. Unzip folder. Find eclipse.exe application and open it) Create a new java project with 1,2 as references Copy 3 to workspace For IE, go to internet options->security and change the security level so that it’s the same for all zones. Write sample java program Below program opens google in IE and searches for selenium test and closes it. // All the imports happen automatically when you use eclipse ide and add the downloaded jars in the project references package test; import org.openqa.selenium.Alert; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.ie...

Form - User Input Automation

Text boxes WebElement t=driver.findElement(By.id(“username”)); t.sendkeys(“test name”); Buttons WebElement t=driver.findElement(By.id(“createbutton”)); t.click(); DropDown Boxes  WebElement select = driver.findElement(By.tagName("select")); List<WebElement> allOptions = select.findElements(By.tagName("option")); for (WebElement option : allOptions) { System.out.println(String.format("Value is: %s", option.getAttribute("value"))); option.click(); } This will find the first “SELECT” element on the page, and cycle through each of its OPTIONs in turn, printing out their values, and selecting each in turn. As you will notice, this isn’t the most efficient way of dealing with SELECT elements. WebDriver’s support classes include one called “Select”, which provides useful methods for interacting with these Select oSelection = new Select(driver.findElement(By.tagName("select"))); oSelection.deselectAll(); //All op...

Switch between browsers\windows and pop ups

These commands can be used to switch between windows, iterate through different windows opened by the webdriver, handle pop ups and frames in windows.  GetWindowHandle Command Purpose : To get the   window handle   of the current window. driver.getWindowHandle(); Returns an alphanumeric string GetWindowHandles Command Purpose : To get the   window handle   of   all   the current windows. Set<String> handle=Driver.getWindowHandles(); Returns a set of window handles SwitchTo Window Command Purpose : WebDriver supports   moving   between named windows using the “switchTo” method. For(String handle:driver.getWindowHandles()) Driver.switchto().window(handle); Or Driver.switchto().window(windowname); <A href="newwindow.html" target=" windowname ">click here for a new window </A> SwitchTo Frame Command Purpose : WebDriver supports moving between frames using the “ switchTo ” method. Driver.s...