0

I'm using a SendKeys method to write text in a field. But on IE11, the writting is too slow, and my script shutdown cause a timeout.

I don't know how resolve this problem.

DavidG
  • 113,891
  • 12
  • 217
  • 223
  • 2
    You need to provide more than that or only psychics will be able to answer your problem. – mccainz Jul 31 '17 at 08:58
  • [This](https://stackoverflow.com/a/25584027/2365564) might help ! – Shoaib Shaikh Jul 31 '17 at 09:14
  • I resolved my problem with my psychics powers ! It was a compatibility problem with the IEDriverServer. I used x86 instead of x64. – Johan Duclos Jul 31 '17 at 15:31
  • Can you improve this question and provide a detailed answer as to how you solved the issue? As it stands now this question is poor quality and a candidate for deletion. The idea is to provide enough background in the question such that other users with the same problem can identify the issue and your answer should provide enough detail so that they can then solve the issue. – mccainz Aug 01 '17 at 20:34

1 Answers1

0

I had Similar issue with IE11 on Windows x64 bit. I was using 64bit version of IEDriverServer.exe (IE driver-2.39.0 with selenium-3.0.1).

After I changed to 32bit version of IEDriverServer.exe, it solved the issue

Jois
  • 1
  • 1