所以,我使用的是噩夢JS Ajax請求,我喜歡模擬登錄過程,這樣做,我用nightmarejs像獲取了惡夢JS
function testiiing(){
nightmare
.goto('http://localhost:4200/login')
.type('#name', 'test')
.type('#pwd', 'test')
.click('#log')
.evaluate(function() {
return //something
})
.then(function(result) {
console.log(result);
})
.then(function() {
console.log('done');
})
.catch(function(error){
console.error('an error has occurred: ' + error);
});
}
事情是我想把「//東西」改成可以讓我返回的東西「name = test & pwd = test」(所以ajax post請求),任何人都可以幫助我或告訴我它是否可能?
嗨,我的回答有幫助嗎? – Andrew
嗨安德魯,這可能會有所幫助,如果我可以找到一種方法讓惡夢接受「$」參數,我一直在尋找一種方式,因爲你回答我^^ –
對不起?你不是在用jQuery嗎? – Andrew