I've setup webdriverio
to run with FF and Chrome and all works fine.
I'm trying to run the same tests with http://webdriver.io/guide/services/iedriver.html.
It runs the first url
command, but fails on the second run. E.g.:
browser.url('https://facebook.com'); //navigates to facebook
browser.url('https://google.com'); //fails on this line
Which throws:
Failed to navigate to http://google.com. This usually means that a call to the COM method IWebBrowser2::Navigate2() failed. Build info: version: '3.6.0', revision: '6fbf3ec767', time: '2017-09-27T16:15:40.131Z' os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_151' Driver info: driver.version: unknown running internet explorer
Any idea why and how to make this work?
EDIT: I've read IE11 Selenium WebDriverException: Failed to navigate. (org.openqa.selenium.WebDriverException ...IWebBrowser2::Navigate2() failed which didn't work for me