我想将标头添加到我的 HTTP 请求中,以对特定的测试用例 Selenium 进行身份验证。我使用表单 selenium.addCustomRequestHeader(key, value) 但没有预期的结果。在我的控制台中有警告消息:“警告:getString(addCustomRequestHeader) 看到了不好的结果”。代码:
@Before
public void setUp() throws Exception {
seleniumServer = new SeleniumServer();
seleniumServer.start();
selenium = new DefaultSelenium("localhost", 4444, "*iexplore",
TARGET_URL);
selenium.start("addCustomRequestHeader=true");
@Test
public void testValidCookieSessionIDGamen() throws Exception {
selenium.addCustomRequestHeader(key,value);
selenium.open(TARGET_URL);
selenium.waitForPageToLoad("30000");
assertTrue(selenium.isTextPresent("a"));
}
知道我该怎么做吗?谢谢你的时间