以下是代码:-
package sanityTests;
import java.io.File;
import java.io.IOException;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;
import jxl.read.biff.BiffException;
public class DataDrivenTest2 {
@Test (dataProvider= "testdata") //attribute
public void add(String x , String y){
int a= Integer.parseInt(x); //Convert String to integer
int b = Integer.parseInt(y);
int z=a+b;
System.out.println(z);
}
@DataProvider(name="testdata") //annotation for TestNG
public Object [] [] readExcel() throws BiffException, IOException //Way of Object Declaration of Array.Main Method Removed because of test NG Framework
{
File f = new File("C:/Users/Ishan/Desktop/Input2.xls"); //Create File Object to locate file on system
Workbook w = Workbook.getWorkbook(f); //Activate the Workbook
Sheet s = w.getSheet(0); //Activate Sheet (either by name or id). Id starts with 0
int rows= s.getRows() ; //Get Row Count
System.out.println(rows); //Get Column Count
int columns = s.getColumns();
System.out.println(columns);
String InputData[] [] = new String [rows] [columns]; //Array to read data from excel file
for(int i=0; i<rows; i++){
for(int j=0; j<columns;j++){
Cell c =s.getCell(j, i); // Getting location of cell
InputData[i][j] =c.getContents();
System.out.println(InputData[i][j]);
}
}
return InputData;
}
}
现在它返回我输入 Excel 中提到的所有值和值的总和。以下是输入值
1 2 3 4 5 6
现在我只想从特定的行和列中选择值,比如 Row 1 , Column 1 并将它们相加并显示总和。我试图在输入数据字段中输入 1,1,但没有得到输出。请帮忙。