Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Keypress is very slow in Selenium Webdriver

I have scripted selenium web driver.. It was working fine in IE9. I have upgraded to IE11. The sendkeys command is very in typing characters. It is entering one by one character and it is really slow.. I definitely did not make any change in the script. Only I upgraded the browser.. Is there any reason for this? Can any one know the resolution please let me know

Thanks

like image 206
ChanGan Avatar asked Mar 13 '23 09:03

ChanGan


1 Answers

I had similar problem with my windows 8, IE11 and webdriver 64bit. I swapped the 64 bit webdriver to the 32bit one and then the tests just went very fast. (fast response from send_keys which used to be 4-5 secs per key...)

Hope this helps.

like image 96
FredyK Avatar answered May 08 '23 11:05

FredyK