当使用以下代码在带有不可见复选框的浏览器上运行 nightwatch.js 测试时。
browser.moveToElement('input[id="2verificationYes"]')
.click('input[id="2verificationYes"]')
我收到以下错误:
An error occurred while running .click() command on ,input[id="2verificationYes"]>: unknown error: Element `element` is not clickable at point (111, 701). Other element would receive the click: `otherElement`
at process._tickCallback (internal/process/next_tick.js:64:7)
我正在使用 nightwatch v.1.0.19、chromedriver ^2.43.0、geckodriver ^1.16.2、selenium-server ^3.14.0
我尝试在每次调用时使用回调函数,但结果是一样的。试图研究如何滚动到 nightwatch 中的元素,但 api 没有。我的理解是 moveToElement 函数应该滚动到元素。