How to use the IE webdriver from selenium for python (Failed to navigate error)? How to use the IE webdriver from selenium for python (Failed to navigate error)? selenium selenium

How to use the IE webdriver from selenium for python (Failed to navigate error)?


Not directly answering the question, but I could not reproduce it when using IE11 on Windows 10 through BrowserStack and opening this http auth protected page:

from selenium import webdriverdesired_cap = {'os': 'Windows', 'os_version': '10', 'browser': 'IE', 'browser_version': '11.0'}driver = webdriver.Remote(    command_executor='http://usename:key@hub.browserstack.com:80/wd/hub',    desired_capabilities=desired_cap)driver.get("http://httpwatch:password1@www.httpwatch.com/httpgallery/authentication/authenticatedimage/default.aspx?0.7349707232788205")

No errors and I see the image that is behind the HTTP auth.

Using selenium 2.53.5.