2

无法在 InternetExplorerDriver 中添加 cookie。

InternetExplorerDriver driver = .....;
driver.manage().add(myCookie);

例外:

 org.openqa.selenium.WebDriverException: Unable to add cookie to page
 (WARNING: The server did not provide any stacktrace information)
4

1 回答 1

0

在添加 cookie 之前,您必须加载要添加 cookie 的网站。

所以你的代码应该是这样的:

InternetExplorerDriver driver = .....;
driver.get("http://my.testing.site");
driver.manage().add(myCookie);

我认为在错误跟踪器中提出了一个问题,我会看看我是否可以把它挖出来。

编辑

这是一张票:

https://code.google.com/p/selenium/issues/detail?id=1953

于 2013-04-12T11:50:18.220 回答