作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
显然,在 Nightwatch
中,没有“文档”或“窗口”对象。有一个看起来相似的“浏览器”对象。
尝试使用 .getElementById()
、.remove()
、.removeChild()
并且 Nightwatch 无法识别这些方法。
最佳答案
您必须使用.execute()
函数来编写文档语句。在下面的示例中,我使用 querySelector
查找元素,然后在回调中断言其内部文本。
'Nightwatch JS Example': function(browser) {
browser.url('https://example.com').waitForElementVisible('body').execute(function() {
return document.querySelector(selector).innerText
}, [], function(result) {
this.assert.equal(result.value, 'Some text')
})
}
关于selenium - Nightwatch - Node.js - 如何移除/删除 HTML 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66732954/
我是一名优秀的程序员,十分优秀!