我正在尝试从 Drupal 站点上的两个网页中提取标题标签文本。我想使用 Nightmarejs。
到目前为止,这是我的代码:
// get the <title> text from inside the Drupal site
var Nightmare = require('nightmare');
var user = 'foobar@example.com';
var pass = 'foobar';
new Nightmare()
.goto('http://example.com/user')
.type('#edit-name', user)
.type('#edit-pass', pass)
.click('.searchsubmit')
.wait()
.evaluate(function () {
return document.getElementsByTagName("TITLE")[0];
}, function (res) {
console.log('Homepage title: '+res.text);
})
.run(function(err, nightmare){
console.log('Done1.');
// step 2
nightmare
.goto('http://example.com/admin')
.wait()
.evaluate(function () {
return document.getElementsByTagName("TITLE")[0];
}, function (res) {
console.log('Admin page title: '+res.text);
})
.run(function(err, nightmare){
console.log('Done2.');
})
;
})
;
当我运行它时,使用:node app.js我能够成功登录到第一页。不幸的是,当我尝试打开第二页时,我看到第二页调用 ( http://example.com/admin ) 拒绝访问。会话没有被带到第二个“goto”命令中。
我该怎么做才能使用同一个 nightmarejs 会话打开许多页面?