数据驱动测试 - 无法从 Excel Selenium 读取值

问题描述 投票:0回答:1

我正在尝试通过 eclipse 使用 selenium java 读取 Excel 中的值。已成功导入 apache poi jar 文件。

public class DDT {
    public static void main(String[] args) throws EncryptedDocumentException, IOException {
        FileInputStream fis = new FileInputStream("E:\\DDT\\DDT.xlsx");
        Workbook wb = WorkbookFactory.create(fis);
        String str = wb.getSheet("Sheet1").getRow(1).getCell(1).getStringCellValue();
        System.out.println(str);
    }
}

尝试找到解决方案,主要建议在 pom.xml 文件中进行更改。但在我的项目中,我没有 pox.xml 文件。怎么解决这个问题?

Eclipse Project Structure

输出错误:

Output screenshot

java selenium-webdriver
1个回答
0
投票

pom.xml 用于 Maven 项目。它不是 java 项目的必需先决条件。 您可以将所需的第三方库添加到Eclipse引用的库中。

您可以尝试如何在 Eclipse 中添加引用中的解决方案。在运行之前将所需的 apache poi 库添加到您的项目中。

© www.soinside.com 2019 - 2024. All rights reserved.