我一直在嘗試重新加載頁面的各種建議。守望的友好命令或JavaScript函數來重新加載頁面
與nightwatch麥哲倫testarmada。我看到的錯誤「TypeError:無法讀取屬性'應用'未定義」
有沒有其他人遇到這個問題/解決了它?
編輯:client.navigate()。refresh();不起作用。
我一直在嘗試重新加載頁面的各種建議。守望的友好命令或JavaScript函數來重新加載頁面
與nightwatch麥哲倫testarmada。我看到的錯誤「TypeError:無法讀取屬性'應用'未定義」
有沒有其他人遇到這個問題/解決了它?
編輯: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.
},
});
您需要向我們顯示您的代碼。 – jcubic