Running Selenium IEDriverServer 3.5.1 32bit, I am experiencing very, very slow text entry in Internet Explorer v11. Oddly, if I switch to IEDriverServer 3.4.0 (also 32bit) it is not slow, but overall test execution slows down somewhat (this issue only surfaced a few days ago, oddly. Previously I was using 3.5.1 with no issues). Has anyone found a legitimate solution to this issue? Here is my webdriver definition:
DesiredCapabilitiescaps = DesiredCapabilities.internetExplorer();
caps.setBrowserName("internet explorer");
caps.setCapability(InternetExplorerDriver.ENABLE_PERSISTENT_HOVERING, false);
caps.setCapability(InternetExplorerDriver.IE_ENSURE_CLEAN_SESSION, true);
caps.setCapability(InternetExplorerDriver.NATIVE_EVENTS, false);
caps.setCapability(InternetExplorerDriver.REQUIRE_WINDOW_FOCUS, true);
caps.setCapability(CapabilityType.ACCEPT_SSL_CERTS, true);
caps.setJavascriptEnabled(true);
Additionally, on IE itself, I have the following set:
- All the security zones set to protected mode ON
- Advanced > Security> Enable 64-bit processes for Enhanced Protected Mode is unchecked.
- Connnections > Lan Settings > Automatically Detect Settings is unchecked
Every time I googled this issue, I find an answer from a year ago, usually related to Selenium 2.53 or something like that. Has anybody experienced this recently, and if so, how was it fixed? Thanks!