1

null ポイントの例外が発生しています。ここで何が間違っているのかわかりません。私が得るエラーはjava.lang.NullPointerExceptionforgoToLogintest1()atですbeginAt("someJspFile")

import net.sourceforge.jwebunit.junit.JWebUnit;
import net.sourceforge.jwebunit.util.TestingEngineRegistry;
import org.junit.Before;

import org.junit.*;
import static net.sourceforge.jwebunit.junit.JWebUnit.*;

import static net.sourceforge.jwebunit.junit.JWebUnit.setBaseUrl;



public class ServletTest {


    @Before
    public void prepare() {
        JWebUnit.setTestingEngineKey(TestingEngineRegistry.TESTING_ENGINE_HTMLUNIT);    // use HtmlUnit
        JWebUnit.setTestingEngineKey(TestingEngineRegistry.TESTING_ENGINE_WEBDRIVER);    // use WebDriver
    }

    public void setUp() throws Exception {

        setBaseUrl("http://localhost:8080");

    }
    @Test
    public void goToLogin() {
       beginAt( "someJspFile.jsp" );
    }

    @Test
    public void test1() {
       beginAt("someJspFile.jsp"); 
       setTextField("username", "test");
       submit();
       assertTitleEquals("Welcome, test!");
    }

}
4

1 に答える 1

0

テストで「someJspFile.jsp」ページを開くことができません。ページのアドレスが間違っています。

于 2016-01-13T07:30:05.787 に答える