gpt4 book ai didi

nightwatch.js - Nightwatch,afterEach,browser.pause 不是函数

转载 作者:行者123 更新时间:2023-12-04 05:30:14 25 4
gpt4 key购买 nike

我想暂停每个测试。
我创建了这个函数:

afterEach:function(browser){
browser.pause(2000);
},

但是当我运行测试时,我会得到错误:

TypeError: browser.pause is not a function



为什么 ?在测试中 browser.pause 是功能。

最佳答案

答案,由 beatfactor 提供, 关于 linked GitHub issue , 是

When using afterEach you need to use the done callback argument always if you want to use the browser object. That is for backwards compatibility. So you need to do either:



afterEach(browser, done) {
// ...
done();
}

关于nightwatch.js - Nightwatch,afterEach,browser.pause 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36309656/

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