我想在我的HTTP请求中添加标头,以便对特定的测试用例Selenium进行身份验证。我使用表单selenium.addCustomRequestHeader(键,值)但没有预期的结果。在我的控制台中有警告消息:“警告:getString(addCustomRequestHeader)看到了错误的结果OK”。 代码:
@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"));
}
知道我该怎么办?谢谢你的时间