gpt4 book ai didi

mysql - 使用 Selenium 和 Testng 通过 Eclipse 从 Excel 将数据插入 MySQL

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:27 24 4
gpt4 key购买 nike

我在尝试进行编码部分时被打动了。以下是我试过的部分。我需要知道 @Test 部分。我不知道编写 Selenium 代码来从 excel 中获取数据并将数据插入 MySQL。

import org.testng.annotations.BeforeTest;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import com.thoughtworks.selenium.SeleneseTestBase;
import java.io.File;
import java.sql.*;
import jxl.*;

public class testng extends SeleneseTestBase{

@BeforeTest
public static void connection()
{

try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
@BeforeTest
public static void MysqlConnection() //we need to add the Dataprovider name[name="DP"] to pass the data from excel sheet
{
try {
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root", "admin");
Statement stmt = conn.createStatement();

} catch (SQLException e) {
e.printStackTrace();
return;
}

System.out.println("Testing Testfile1");
}

@DataProvider(name = "DP1")
public Object[][] createData1() throws Exception{
Object[][] retObjArr=getTableArray("D:\\sakthi\\selenium\\data3.xls","DataPool", "mysqldata");
return(retObjArr);
}

@Test (dataProvider = "DP1")
public void testDataProviderExample(int id, int plist_id, String email) throws Exception {


//This is the part where i'm in need of help


}

public String[][] getTableArray(String xlFilePath, String sheetName, String tableName) throws Exception{
String[][] tabArray=null;

Workbook workbook = Workbook.getWorkbook(new File(xlFilePath));
Sheet sheet = workbook.getSheet(sheetName);
int startRow,startCol, endRow, endCol,ci,cj;
Cell tableStart=sheet.findCell(tableName);
startRow=tableStart.getRow();
startCol=tableStart.getColumn();

Cell tableEnd= sheet.findCell(tableName, startCol+1,startRow+1, 100, 64000, false);

endRow=tableEnd.getRow();
endCol=tableEnd.getColumn();
System.out.println("startRow="+startRow+", endRow="+endRow+", " +"startCol="+startCol+", endCol="+endCol);
tabArray=new String[endRow-startRow-1][endCol-startCol-1];
ci=0;

for (int i=startRow+1;i<endRow;i++,ci++){
cj=0;
for (int j=startCol+1;j<endCol;j++,cj++){
tabArray[ci][cj]=sheet.getCell(j,i).getContents();
}
}

return(tabArray);
}

最佳答案

Selenium 用于控制网络浏览器,您不需要它打开 excel 文件并写入数据库。

关于mysql - 使用 Selenium 和 Testng 通过 Eclipse 从 Excel 将数据插入 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21913108/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com