我一直在尝试重新加载页面的各种建议。
与 Nightwatch magellan testarmada。我看到的错误是"TypeError: Cannot read property 'apply' of undefined"
有没有其他人遇到过这个问题/解决了它?
编辑:client.navigate().refresh();
不起作用。
我一直在尝试重新加载页面的各种建议。
与 Nightwatch magellan testarmada。我看到的错误是"TypeError: Cannot read property 'apply' of undefined"
有没有其他人遇到过这个问题/解决了它?
编辑:client.navigate().refresh();
不起作用。
令人尴尬的明显,一旦我修复它。我在一个外部函数中调用它,但问题是这样的:
module.exports = new Test({
'@disabled': false,
"test page that needs a reload" : function(client){
client
// set url
.url(this.url)
.pause(this.timeout)
.navigate().refresh() // does not work
.refresh() // does work.
},
});
不要在此处使用导航。使用下面提到的代码:
return client.refresh();