Selenium sendKeys are not sending all characters

前端 未结 7 1712
面向向阳花
面向向阳花 2021-02-02 15:29

I\'m using Java, Selenium, and Chrome for test automation. Our developers recently upgraded our UI from AngularJS to Angular2 (not sure if that matters). But since then, sendKey

7条回答
  •  灰色年华
    2021-02-02 16:14

    I assume this is caused by this Angular2 issue https://github.com/angular/angular/issues/5808

    Angular can't process input events when they arrive too fast.

    As a workaround you would need to send single characters with a small delay between each.

提交回复
热议问题