I am working on a Selenium-Java(Maven) project using TestNG.
I am using an excel spreadsheet to feed data for my TestNG framework to run a test case. The code works just fine if I hard code the input String values and run. But the moment I used @DataProvider, the code just runs endlessly and does not fail either until I manually stop the execution.
P.S I have used Data Provider for a sample test run by reading just one row from my excel sheet. But the moment I wrote logic to dynamically read all the rows that are data filled, the problem occurred. Need help here.
I tried rebuilding the project, But its not helping.
Following is the Code I used to read Excel data:
public class ExcelDataProvider {
@DataProvider(name = "excelData")
public Object[][] getData() throws IOException {
String[][] data;
String filePath = System.getProperty("user.dir") + "\\src\\test\\resources\\TestDataProvider\\TestDataProvider.xlsx";
FileInputStream fileInputStream = new FileInputStream(filePath);
XSSFWorkbook workBook = new XSSFWorkbook(fileInputStream);
XSSFSheet sheet = workBook.getSheet("Values");
int length=sheet.getLastRowNum();
data=new String[length][2];
String s = "";
int i = 0;
while (!Objects.equals(s, "0")) {
XSSFRow row = sheet.getRow(i);
XSSFCell cell1 = row.getCell(0);
cell1.setCellType(CellType.STRING);
s = cell1.getStringCellValue();
if (Objects.equals(s, "0")) {
break;
}
XSSFCell cell2 = row.getCell(1);
String val1 = cell1.getStringCellValue();
String val2 = cell2.getStringCellValue();
data[i][0] = val1;
data[i][1] = val2;
}
return data;
}
}
Since you are checking s= "0" then While dynamically reading all the rows, please Make sure the last column value as 0 then only the program will terminate.
enter image description here
else try with getLastCellNum() method to get better control. . for example: