我正在使用New Relic的脚本浏览器填充表单。当我使用sendKeys方法发送电话号码或邮政编码时,有时按键会乱序发送。例如:
.then(function () {
log(6.7, 'Populate Zip')
$browser.sleep("8000");
return $browser.waitForAndFindElement(By.id("shippingZip"))
.then(function (el) {
el.clear();//clear out the input
el.sendKeys("12345");
发送到浏览器的是“ 12453”
以前有人遇到过这个问题吗?