I downloaded the driver and I gave the exact path in my code but when I ran the code it shows me error
my code with java is as below:
System.out.prin
Below Code snippet will surely work:
InternetExplorerOptions ops = new InternetExplorerOptions();
// ops.ignoreZoomSettings(); -- Not necessarily in case 100% zoom.
ops.introduceFlakinessByIgnoringSecurityDomains(); -- Necessary to skip protected
mode setup
System.setProperty("webdriver.ie.driver",
\\IEDriverServer.exe");
WebDriver dr = new InternetExplorerDriver(ops);