无法在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)
答案 0 :(得分:0)
在添加Cookie之前,您必须加载要添加Cookie的网站。
因此您的代码应如下所示:
InternetExplorerDriver driver = .....;
driver.get("http://my.testing.site");
driver.manage().add(myCookie);
我认为bug跟踪器中存在一些问题,我会看看是否可以将其挖掘出来。
修改强>
以下是其中一张门票: