0

I'm running selenium tests on IE 11 in angularJS application. It takes more than usual time to detect/select/validate elements while it works better in chrome.

Browser information : Internet explorer 11 Webdriver : IEdriverserver 32bit selenium version: 3.14

Vishy
  • 3
  • 1

1 Answers1

0

You could try the following methods to make it faster when using selenium IE WebDriver:

  1. Download the recommended 32 bit Windows IE WebDriver version 3.150.1 and latest stable version 3.141.59 of Selenium from this page.
  2. Change your IE settings: Tools -> Internet Options -> Security, set Enable Protected Mode to the same value in all zones (all checked or all unchecked).

enter image description here

  1. Instantiate your InterExplorerWeDriver class with the path of your IE WebDriver like this:

    InternetExplorerDriver ieDiver = new InternetExplorerDriver(“Path to the 32 bit IEdriver”);
    
  2. Add capability nativeEvents as false. Add capability requireWindowFocus as true.

Reference link:

(1) Very slow text entry on IEDriverServer

(2) Selenium WebDriver typing very slow in text field on IE browser

Yu Zhou
  • 11,532
  • 1
  • 8
  • 22