In IE: org.openqa.selenium.WebDriverException: This usually means that a call to the COM method IWebBrowser2::Navigate2() failed
internet-explorer, selenium, selenium-webdriver
Solution
You must set the Protected Mode settings for each zone to be the same value in the Internet Explorer. Hope the below link may be helpful to you.
NoSuchElementException is occurred during implementation of InternetExplorerDriver in Selenium WebDriver
Regards,
Vignesh
Problem
I am using Selenium to write test cases for my web application. When I run the test from Firefox it's working fine, but when I try to run it from IE I am not able to run and I get the error message: This usually means that a call to the COM method IWebBrowser2::Navigate2() failed exception. ``` System.setProperty("webdriver.ie.driver", "browserdrivers/IEDriverServer.exe"); WebDriver web = new InternetExplorerDriver(); web.get("URL"); ``` I am able to see IE screen but it's not navigating to that URL, and I am getting above exception. How can I resolve this ?