You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an issue involving InternetExplorerDriver and WebDriver plus. The IE browser is not responding to clicks when I run my scripts, but Firefox and Chrome work just fine. I’ve searched the literature and found a good answer for a similar problem involving WebDriver (no Plus) at https://code.google.com/p/selenium/issues/detail?id=4403:
DesiredCapabilities d = DesiredCapabilities.internetExplorer();
//d.setCapability("nativeEvents", false);
webdriver = new InternetExplorerDriver(d);
I have been unable to find a similar approach for WebDriver Plus with Python where the driver is instantiated by:
self.driver = WebDriver("ie", wait=5)
The text was updated successfully, but these errors were encountered:
There is an issue involving InternetExplorerDriver and WebDriver plus. The IE browser is not responding to clicks when I run my scripts, but Firefox and Chrome work just fine. I’ve searched the literature and found a good answer for a similar problem involving WebDriver (no Plus) at https://code.google.com/p/selenium/issues/detail?id=4403:
DesiredCapabilities d = DesiredCapabilities.internetExplorer();
//d.setCapability("nativeEvents", false);
webdriver = new InternetExplorerDriver(d);
I have been unable to find a similar approach for WebDriver Plus with Python where the driver is instantiated by:
self.driver = WebDriver("ie", wait=5)
The text was updated successfully, but these errors were encountered: