I\'m unable to launch Internet Explorer browser with the selenium webdriver. Facing the below error, can anyone please help
Error occured:
Started In
This error message...
Exception in thread "main" org.openqa.selenium.NoSuchWindowException: Unable to get browser
...implies that the IEDriverServer was unable to initiate/spawn a new WebBrowsing Session i.e. InternetExplorer Browser session.
Your main issue is the incompatibility between the version of the binaries you are using as follows:
So there is a clear mismatch between the Selenium Client v3.141.59, InternetExplorerDriver v3.14.0.0 and JDK v8u60. As per best practices as Selenium Client and InternetExplorerDriver are released in sync and you must use both the binaries from the same release.
@Test
.Few points to check: 1. Check for security settings. Enable protected mode for all Options "Internet, Local Internet, Trusted Sites, Restricted sites" must not be selected. 2. Check for iedriverserver.exe(for IE 11 3.14) version compatibility.
Thanks and regards, Sandeep Jaju