0

我不能使用selenium.createCookie具有setcookie特定域agrument 的函数。(使用 Jmeter 还是可以的)

我使用如下:

selenium.createCookie("name=value", "domain=localhost");
selenium.open("localhost/sample/login");  

你对此有什么想法吗?非常感谢。

4

1 回答 1

1
Cookie cookie = new Cookie.Builder("name", "value").domain("domain").build();
driver.manage().addCookie(cookie);

只需确保首先导入正确类型的 cookie:

import org.openqa.selenium.Cookie;

此外,您可能无法为当前不在的域添加 cookie。所以首先导航到所需的域,然后添加Cookie。

于 2013-06-11T18:08:28.343 回答