我試圖讓IE通過Selenium網格初始化遠程驅動程序時啓動每個會話。這Selenium - 在初始化RemoteWebDriver時使用InternetExplorerOptions()
DesiredCapabilities caps = null;
caps = DesiredCapabilities.internetExplorer();
caps.setCapability(InternetExplorerDriver.IE_ENSURE_CLEAN_SESSION, true);
WebDriver driver = new RemoteWebDriver(new URL("http://10.10.22.126:5555/wd/hub"), caps);
不工作,IE開始從前面的測試,這會導致問題的餅乾每一個新的考驗。我想實現這個
InternetExplorerOptions ieOptions = new InternetExplorerOptions()
.destructivelyEnsureCleanSession();
所決定here,但我無法弄清楚如何使用這個作爲遠程驅動器,而不是在本地。謝謝!
不設置此'ieOptions'的能力不行? – nullpointer