Webdriver获得零点异常

时间:2013-06-25 14:47:17

标签: junit selenium-webdriver

以下代码示例返回null pointer exception。那是为什么?

public class JunitCheck {

WebDriver driver;
public String baseURL = null;


@Before
public void setUp() throws Exception {


    baseURL = "https://www.google.com";
}

@After
public void tearDown() throws Exception {


}

@Test
public void test() {
    driver = new FirefoxDriver();

    driver.get(baseURL);
    System.out.println(baseURL);

}

1 个答案:

答案 0 :(得分:0)

您可能必须将baseURL设为static

更新:静态与否它对我有用。

检查您的导入:

import org.junit.After;
import org.junit.Before;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;