How to fix the slow sendkeys on IE 11 with Selenium Webdriver 3.0.0?

后端 未结 11 479
无人共我
无人共我 2020-12-10 17:19

Firefox and chrome is working fine but with IE 11, the sendkeys are extremely slow. How do you fix this issue ?

My Environment:

  • Running IE 11.103
11条回答
  •  佛祖请我去吃肉
    2020-12-10 17:35

    A note for ruby and webdiriver version 3+

    The documentation has examples with native_events IE parameter, even it is written in console at the start point.

    Actually the right parameter name is nativeEvent.

    Set nativeEvent = false,
    and webdriver will use fast JS instead off a slow native click simulation.

提交回复
热议问题