2

我一直在尝试重新加载页面的各种建议。

手动重新加载页面

与 Nightwatch magellan testarmada。我看到的错误是"TypeError: Cannot read property 'apply' of undefined"

有没有其他人遇到过这个问题/解决了它?

编辑:client.navigate().refresh();不起作用。

4

2 回答 2

6

令人尴尬的明显,一旦我修复它。我在一个外部函数中调用它,但问题是这样的:

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. 

    },


});
于 2016-02-22T23:38:38.820 回答
0

不要在此处使用导航。使用下面提到的代码:

return client.refresh();
于 2018-07-19T08:28:46.280 回答