WebDriver を使用してアプリケーションに入力するものは何でも、ユーザー名とパスワードを Excel に保存したいと考えています。TestNG フレームワークと Apache POI を使用してデータを Excel に書き込みます。しかし、私は得てNull pointer exception
います。ExcelでWebDriverを操作する方法を教えてください。
public class Test {
private static WebDriver driver;
static String username="abc";
static String password="abf123";
public static void main(String args[]) {
try {
driver.get("any url");
driver.findElement(By.xpath("//*[@id='txtUserName']")).sendKeys(username);
driver.findElement(By.xpath("//*[@id='txtPwd']")).sendKeys(password);
FileOutputStream fos = new FileOutputStream("Userpass.xls");
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet worksheet = workbook.createSheet("POI WorkSheet");
HSSFRow row1 = worksheet.createRow((short) 0);
HSSFCell cell1 = row1.createCell((short) 0);
cell1.setCellValue(username);
HSSFCell cell2 = row1.createCell((short) 1);
cell2.setCellValue(password);
workbook.write(fos);
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
@Test
public void f() {
}
}