gpt4 book ai didi

node.js - WebDriver 等待 n 秒

转载 作者:搜寻专家 更新时间:2023-10-31 22:36:55 25 4
gpt4 key购买 nike

我正在使用 Sauce Labs(使用 Selenium + Webdriver + Nodejs)编写一些功能测试。我的一个测试用例如下所示:

  it('Should Not Have Any Errors', function(done) {
browser
.get(host + '/test.live.cgi?view=pixelTest')
.elementById('errorHolder')
.text()
.should.eventually.equal('[]')
.nodeify(done);
});

在加载页面和检查 errorHolder 元素的文本之间等待 10 秒,我将如何处理?我一直在扫描 api https://github.com/admc/wd/blob/master/doc/api.md但是所有等待函数看起来都需要断言函数来测试给定条件是否为真。我正在尝试使用 waitFor(opts, cb) -> cb(err) 方法,但我不确定如何将它与 promises 联系起来。我可以这样做吗?

最佳答案

在webdriver提供的sleep函数中找到了答案。现在代码如下所示:

it('Should Not Have Any Errors', function(done) {
browser
.get(host + '/test.live.cgi?view=pixelTest')
.sleep(10000)
.elementById('errorHolder')
.text()
.should.eventually.equal('[]')
.nodeify(done);
});

关于node.js - WebDriver 等待 n 秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33901814/

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