1
我並不真的得到nightmarejs所以它可能很簡單。
我的問題是爲什麼應用程序停留在Facebook的網址,並沒有去Google?NightmareJs goto後評價
我並不真的得到nightmarejs所以它可能很簡單。
我的問題是爲什麼應用程序停留在Facebook的網址,並沒有去Google?NightmareJs goto後評價
以下行返回一個承諾,您首先已經解決承諾的數據。只需在夢魘承諾鏈中添加一個then()
即可。
nightmare
.goto('https://google.com')
.then(function(){
console.log("I'm done")
})
以下是帶有更好鏈條的完整代碼。
var Nightmare = require('nightmare');
var nightmare = Nightmare({ show: true });
nightmare
.goto('https://facebook.com')
.evaluate(function() {
return document.title;
}
)
.then(function(result){
console.log(result)
return nightmare.goto('https://google.com')
})
.then(function(){
console.log("I am on google")
})