0

下面的代码示例返回一个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);

}
4

1 回答 1

0

您可能必须将您的设置baseURLstatic.

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

检查您的进口:

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;
于 2013-06-25T14:54:55.750 回答