I\'ve searched all over for an answer and I can\'t find any fix to my issue. I am trying to run my Selenium tests in IE11. All other browsers work fine (including Edge). A simpl
Earlier, I was using IE11 with Selenium WebDriver 2.5.3 and IEDriver -2.53.0. I got the same issue. I changed the capabilities by setting some properties for IE programmatically and it worked. Here's the code snippet:
DesiredCapabilities caps = DesiredCapabilities.internetExplorer();
caps.setCapability(InternetExplorerDriver.INITIAL_BROWSER_URL, Configuration.getConfig("My URL"));
caps.setCapability(InternetExplorerDriver.IGNORE_ZOOM_SETTING, true);