TestNG不运行,显示java.lang.NullPointerException

时间:2015-12-04 05:32:38

标签: java eclipse selenium testng

我正在使用Eclipse Luna,我已经编写了这个基本代码。

package TestNg;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.Test;

public class NewTest {
    WebDriver driver;
  @Test
  public void f() {
      driver =new FirefoxDriver();
      driver.get("http://www.spicejet.com/");
      driver.manage().window().maximize();
  }
}

但是当我尝试将测试作为“Run as TestNG test”运行时 我得到以下错误。

Please find the screenshot

0 个答案:

没有答案