gpt4 book ai didi

selenium - Nightwatch - Node.js - 如何移除/删除 HTML 元素?

转载 作者:行者123 更新时间:2023-12-04 15:02:29 27 4
gpt4 key购买 nike

显然,在 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com