尝试在 iframe 中单击提交时,我在 Nightwatch 中收到此错误
这是我的代码:
.perform(() => {
client.getAttribute('#myiframe', 'id', result => {
client
.frame(result.value)
.setValue('input[name="username"]', 'user')
.setValue('input[name="password"]', 'password)
.click('input[type="submit"]')
})
})
它也偶尔发生
无论如何我可以解决这个问题?
我正在使用最新版本的 nightwatch (^1.3.5) 和 chromedriver (^83.0.0)