0

I am facing a very slow response when running my scripts on IE11. Sometimes, I get FocusWindowsClosed, ElementIsNotClickable. I have changed the zoom settings for all zones, created feature BFCACHE for IE in feature control, added capabilities into my code but nothing works for me. If anyone has any idea why I am facing this issue. Do i need to downgrade window or IE versions? I have also downloaded the same version of selenium client server with same IEDriver which is (3.8.0).

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
Alex Alex
  • 27
  • 4
  • 2
    The exceptions you mention are not caused by IE running slow. They might be caused by selenium running too fast. Please post the code that throws the exceptions. – Greg Burghardt Jan 15 '20 at 21:15
  • 1
    The selenium and IEDriver version you using are too old. You could refer to DebanjanB's answer to upgrade your selenium and IEDriver version and check the other points in the answer. If it still doesn't solve your issue, it could be better if you provide a [minimal code sample](https://stackoverflow.com/help/minimal-reproducible-example) to reproduce the issue. So that we can test and see how to help. – Yu Zhou Jan 16 '20 at 06:33

1 Answers1

1

To start with, Selenium v3.8.0 of 2017-11-30 is more then 2 years older. Even the error trace logs would be difficult to debug. So as per best practices you may like to:

  • First of all, the fact that ...64-bit IEDriverServer executable populate the input fields with the character sequence very slowly as compared to 32-bit IEDriverServer executable.... is a known issue.

You can find a detailed discussion in IEDriverServer sends text very slowly using Selenium to the search field


tl;dr

A couple of references:

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352