当我在nightmare.js中包含vanilla JS时,我遇到了一个错误。我想确保我的数组中的每封电子邮件都输入到系统中。 for循环是理想的,但我不断遇到错误,例如:
Search failed: Nothing responds to "goto"
这是我的代码:
var jquery = require('jquery');
var Nightmare = require('nightmare');
var nightmare = Nightmare({
show: true,
dock: true
});
var siteName = "*********";
var username = "*********";
var password = "*********";
var outboundEmailArray = [
{
"from_name": "TestOutbound",
"email_username": "array1",
"email_domain": "salesforce.com",
"email_domain": "salesforce.com",
"reply_to": "testOutbound@salesforce.com"
},
{
"from_name": "Tester",
"email_username": "array2.0",
"email_domain": "salesforce.com",
"email_domain": "salesforce.com",
"reply_to": "testOutbound@salesforce.com"
}
];
//
// var outboundEmailSetup = function(outboundEmail){
// nightmare
// .goto("https://" + siteName + ".desk.com/login/new")
// .type("input[id='user_session_email']", username)
// .type("input[id='user_session_password']", password)
// .click("#user_session_submit").wait(2000)
// .goto("https://" + siteName + ".desk.com/admin/settings/mail-servers")
// .click("#a-add-modal").wait(2000)
// .type("input[id='postmark_outbound_mailbox_fromname']", outboundEmail.from_name).wait(2000)
// .type("input[id='email_username']", outboundEmail.email_username).wait(2000)
// .click("#from_select_4999").wait(2000)
// .type("input[id='postmark_outbound_mailbox_reply_to']", outboundEmail.reply_to).wait(2000)
// .click("#postmark_commit").wait(2000)
// .click(".a-modal-bottom .a-button").wait(2000)
// .evaluate(function() {})
// .end()
// .then(function(result) {
// console.log(result)
// })
// .catch(function(error) {
// console.error('Search failed:', error);
// });
// }
var outboundEmailSetup = function(i){
if(i < outboundEmailArray.length) {
nightmare
.goto("https://" + siteName + ".desk.com/login/new")
.type("input[id='user_session_email']", username)
.type("input[id='user_session_password']", password)
.click("#user_session_submit").wait(2000)
.goto("https://" + siteName + ".desk.com/admin/settings/mail-servers")
.click("#a-add-modal").wait(2000)
.type("input[id='postmark_outbound_mailbox_fromname']", outboundEmailArray[i].from_name).wait(2000)
.type("input[id='email_username']", outboundEmailArray[i].email_username).wait(2000)
.click("#from_select_4999").wait(2000)
.type("input[id='postmark_outbound_mailbox_reply_to']", outboundEmailArray[i].reply_to).wait(2000)
.click("#postmark_commit").wait(2000)
.click(".a-modal-bottom .a-button").wait(2000)
.evaluate(function() {})
.end()
.then(function(result) {
console.log(result)
})
.catch(function(error) {
console.error('Search failed:', error);
});
outboundEmailSetup(i+1);
}
}
outboundEmailSetup(0);
理想情况下,它会循环遍历outboundEmailArray,运行函数将电子邮件输入系统,重复直到它到达数组的末尾。
答案 0 :(得分:4)
关键是要避免同时多次调用then
方法
您会找到关于该概念的非常详细的解释here。
基本上你要做的就是确保每个连续的电话都在前一个电话then
方法中进行
当我们事先知道我们正在处理多少步骤时,这非常简单。例如,如果我们想要连续两次调用,代码将是这样的:
nightmare.goto('http://example.com')
.title()
.then(function(title) {
console.log(title);
nightmare.goto('http://google.com')
.title()
.then(function(title) {
console.log(title);
});
});
注意google.com的goto
如何在then
回调中。
由于您正在处理循环,因此您的代码会更复杂一些。
var urls = ['http://example1.com', 'http://example2.com', 'http://example3.com'];
urls.reduce(function(accumulator, url) {
return accumulator.then(function(results) {
return nightmare.goto(url)
.wait('body')
.title()
.then(function(result){
results.push(result);
return results;
});
});
}, Promise.resolve([])).then(function(results){
console.dir(results);
});
我认为源链接比我能更好地解释了这段代码: - )
上面按顺序执行每个梦魇队列,添加结果 到一个数组。得到的累积数组被解析为最终数组 .then()调用打印结果的位置。