我的TestNG测试用例中的NullPointerException解决方案

时间:2014-04-24 06:18:05

标签: eclipse excel selenium-webdriver testng selenium-chromedriver

我正在尝试使用TestNG从外部Excel工作表中使用多组登录cridential来登录Facebook,但是在我写的代码之间抛出:

FAILED: f
java.lang.NullPointerException
    at DataDriven.loginRetesting.f(loginRetesting.java:31)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:84)
    at org.testng.internal.Invoker.invokeMethod(Invoker.java:714)
    at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:901)
    at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1231)
    at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:127)
    at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:111)
    at org.testng.TestRunner.privateRun(TestRunner.java:767)
    at org.testng.TestRunner.run(TestRunner.java:617)
    at org.testng.SuiteRunner.runTest(SuiteRunner.java:334)
    at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329)
    at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291)
    at org.testng.SuiteRunner.run(SuiteRunner.java:240)
    at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
    at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
    at org.testng.TestNG.runSuitesSequentially(TestNG.java:1224)
    at org.testng.TestNG.runSuitesLocally(TestNG.java:1149)
    at org.testng.TestNG.run(TestNG.java:1057)
    at org.testng.remote.RemoteTestNG.run(RemoteTestNG.java:111)
    at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:204)
    at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:175)

代码:

@Test
  public void f() throws Exception{
      FileInputStream fi=new FileInputStream("E:\\workspace99\\SeleniumAutomations\\testdata\\LoginData.xls");
      Workbook w=Workbook.getWorkbook(fi);
      Sheet s=w.getSheet(0);
      for (int i = 1; i < 8; i++) {
          driver.findElement(By.id("email")).sendKeys(s.getCell(0,i).getContents());
          driver.findElement(By.id("pass")).sendKeys(s.getCell(1,i).getContents());
          driver.findElement(By.id("u_0_1")).click();
          Thread.sleep(1000);
          if (selenium.isElementPresent("id=userNavigationLabel")) {
              //driver.findElement(By.cssSelector("span.gb_V.gbii")).click();
              driver.findElement(By.id("userNavigationLabel")).click();
              driver.findElement(By.cssSelector("input.uiLinkButtonInput")).click();
              Thread.sleep(1000);
          }
              else{
                  System.out.println("invalid cridential");
                  driver.findElement(By.id("email")).clear();
                  driver.findElement(By.id("pass")).clear();

              }


        }

    }

我无法找出问题所在?所以如何解决它。

3 个答案:

答案 0 :(得分:2)

首先,不要在方法声明中使用“throws Exception”。相反,在方法内部使用“非空断言”进行try块。

请记住,您永远不想在测试方法中抛出典型的异常,因为它会让您过早退出测试生命周期并跳过@After阶段。 @Before带注释的方法中抛出的异常可能会导致SkipAssertion。

所以,你要做的是失败断言。因此,如果您有时发生异常情况,请吞下异常(不要抛出它)并使用断言来处理它。

例如:

try {

} catch ( NullPointerException e ) {
    Assert.assertTrue( "There was an error in blah.", false );
}

答案 1 :(得分:1)

空指针意味着,变量的预期值为null。

请检查文件是否存在于指定路径&#34; E:\ workspace99 \ SeleniumAutomations \ testdata \ LoginData.xls&#34;并从文件中正确获取值。

答案 2 :(得分:0)

堆栈跟踪显示问题在您的代码中是第31行,但您的代码段不允许我们确定第31行的位置。

您正在呼叫&#34; selenium.isElementPresent&#34;。可以&#34; selenium&#34;是零?