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

おそらくbaseURLas を設定する必要があります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;
于 2013-06-25T14:54:55.750 に答える