使用Apache poi从Excel读取数据后出现java.lang.NullPointerException错误

时间:2015-11-05 14:26:03

标签: java selenium-webdriver

在下面的代码中,当我尝试将该字段值插入到UI文本框中时,从Excel读取数据后,它会将错误抛出为java.lang.nullpointerexception

在下面的代码中,当我尝试通过保留syst.out从Excel读取值时,它显示正确的值。

我在这段代码面临问题

      Cell=ExcelWSheet.getRow(1).getCell(0);
      Cell1=ExcelWSheet.getRow(1).getCell(1);

      String Celldata=Cell.getStringCellValue();
      String Celldata1=Cell1.getStringCellValue();
      System.out.println(Celldata);
      System.out.println(Celldata1);
      System.out.println("username value");
      Thread.sleep(2000);
      ****driver.findElement(By.id("Email")).sendKeys(Celldata);

我正在为Celldata和Celldata1获取syst.out,之后当我尝试将Celldata值插入电子邮件字段时出现此错误。

我的完整代码:

public class NewTest {

 public WebDriver driver;

 private static XSSFSheet ExcelWSheet;

    private static XSSFWorkbook ExcelWBook;

    private static XSSFCell Cell;
    private static XSSFCell Cell1;

    private static XSSFRow Row;

@Test
public void f() throws Exception {
 // This method is to set the file path and open the excel file

  try{
  WebDriver driver=new FirefoxDriver();
  //driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
  driver.get("http://gmail.com");
  Thread.sleep(3000);
  FileInputStream Excelfile=new FileInputStream("D:\\TestData\\Login.xlsx");
  ExcelWBook=new XSSFWorkbook(Excelfile);
  ExcelWSheet=ExcelWBook.getSheet("Sheet1");

  } catch (Exception e){
      throw(e);
  }

// This code is used to read data from excel file

  try{

      Cell=ExcelWSheet.getRow(1).getCell(0);
      Cell1=ExcelWSheet.getRow(1).getCell(1);

      String Celldata=Cell.getStringCellValue();
      String Celldata1=Cell1.getStringCellValue();
      System.out.println(Celldata);
      System.out.println(Celldata1);
      System.out.println("username value");
      Thread.sleep(2000);
      ****driver.findElement(By.id("Email")).sendKeys(Celldata);
      driver.findElement(By.id("next")).click();

      driver.findElement(By.id("Passwd")).sendKeys(Celldata1);****


  }catch (Exception e){
      throw(e);
  }

 // This code is used to write data to the excel sheet

  try{

      Row=ExcelWSheet.getRow(1);
      Cell=Row.getCell(2,Row.RETURN_BLANK_AS_NULL);
      if(Cell==null){

          Cell=Row.createCell(2);
          Cell.setCellValue("Pass");

          FileOutputStream fileout=new FileOutputStream("Login.xlsx");
          ExcelWBook.write(fileout);
          fileout.flush();
          fileout.close();
          }}catch(Exception e){
          throw(e);


      }

1 个答案:

答案 0 :(得分:0)

http://gmail.com,密码的输入字段不会立即出现。这就是为什么 driver.findElement(By.id("Passwd")).sendKeys(Celldata1); 提出了这个问题。

填写完电子邮件地址后,密码字段可能需要一段时间才能显示。等待它的最佳方式是:

WebDriverWait wait = new WebDriverWait(driver, 30); //30s timeout
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("Passwd")));

如果您输入了未知的电子邮件地址(来自您的Excel文件),则根本不会显示密码字段。在这种情况下,请更改测试数据或在代码中插入一些if语句。