FirefoxDriver 给出 NullPointerException

发布于 2024-12-27 05:41:24 字数 1435 浏览 0 评论 0 原文

我正在尝试将 selenium 测试 作为 ma​​ven build 的一部分运行,因此我遵循了本文档中的配置:

http://www.gitshah.com/2010/10/how-to-run-selenium-tests-as-part-of.html

但是当尝试运行我的测试类时:

public class LoginTest {

    private WebDriver driver;
    private String baseUrl;
    private StringBuffer verificationErrors = new StringBuffer();

    @Before
    public void setUp() throws Exception {
        driver = new FirefoxDriver();
        baseUrl = "http://localhost:8080/";
    }

    @Test
    public void testLoginClass() throws Exception {
        driver.get(baseUrl + "/MyApp/login");
        driver.findElement(By.id("j_username")).clear();
        driver.findElement(By.id("j_username")).sendKeys("1");
        driver.findElement(By.id("j_password")).clear();
        driver.findElement(By.id("j_password")).sendKeys("123456");
        driver.findElement(By.id("loginBtn")).click();
    }

    @After
    public void tearDown() throws Exception {
        driver.quit();
        String verificationErrorString = verificationErrors.toString();
        if (!"".equals(verificationErrorString)) {
            fail(verificationErrorString);
        }
    }

}

我在这一行收到 NullPointerException:

driver.get(baseUrl + "/MyApp/login");

请告知为什么我收到此错误。

i am trying to run selenium tests as part of maven build, so i followed the configuration in this document:

http://www.gitshah.com/2010/10/how-to-run-selenium-tests-as-part-of.html

but when trying to run my test class:

public class LoginTest {

    private WebDriver driver;
    private String baseUrl;
    private StringBuffer verificationErrors = new StringBuffer();

    @Before
    public void setUp() throws Exception {
        driver = new FirefoxDriver();
        baseUrl = "http://localhost:8080/";
    }

    @Test
    public void testLoginClass() throws Exception {
        driver.get(baseUrl + "/MyApp/login");
        driver.findElement(By.id("j_username")).clear();
        driver.findElement(By.id("j_username")).sendKeys("1");
        driver.findElement(By.id("j_password")).clear();
        driver.findElement(By.id("j_password")).sendKeys("123456");
        driver.findElement(By.id("loginBtn")).click();
    }

    @After
    public void tearDown() throws Exception {
        driver.quit();
        String verificationErrorString = verificationErrors.toString();
        if (!"".equals(verificationErrorString)) {
            fail(verificationErrorString);
        }
    }

}

i am getting NullPointerException on this line:

driver.get(baseUrl + "/MyApp/login");

please advise why i am getting this error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我一向站在原地 2025-01-03 05:41:24

使测试类扩展 TestCase 后解决了错误

error solved after making the test class extends TestCase

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文