我似乎无法让 nightmare.js 在 Ubuntu Linux 14.04 服务器上工作 [通过 DigitalOcean]。
我已经安装了 PhantomJS (1.9.8) 和 Node (4.2.4),据我所知它们运行良好。
例如,当我运行这个时:
phantomjs loadspeed.js http://www.yahoo.com
使用 loadspeed.js 包含以下内容:
"use strict";
var page = require('webpage').create(),
system = require('system'),
t, address;
if (system.args.length === 1) {
console.log('Usage: loadspeed.js <some URL>');
phantom.exit(1);
} else {
t = Date.now();
address = system.args[1];
page.open(address, function (status) {
if (status !== 'success') {
console.log('FAIL to load the address');
} else {
t = Date.now() - t;
console.log('Page title is ' + page.evaluate(function () {
return document.title;
}));
console.log('Loading time ' + t + ' msec');
}
phantom.exit();
});
}
我得到以下输出:
Page title is Yahoo
Loading time 700 msec
但是,当我尝试运行一个简单的噩梦时:
node --harmony hello_nightmare.js
hello_nightmare.js 包含以下内容:
var Nightmare = require('nightmare');
var google = new Nightmare()
.goto('http://google.com')
.wait()
.run(function(err, nightmare) {
if (err) return console.log(err);
console.log('Done!');
});
我没有任何输出;感觉就像我只是在命令行上按了“Enter”。
我还尝试了噩梦 github 站点上的示例:
npm install nightmare vo
node --harmony hello_nightmare_main.js
hello_nightmare_main.js 包含以下内容:
var Nightmare = require('nightmare');
var vo = require('vo');
vo(function* () {
var nightmare = Nightmare({ show: true });
var link = yield nightmare
.goto('http://yahoo.com')
.type('input[title="Search"]', 'github nightmare')
.click('.searchsubmit')
.wait('.ac-21th')
.evaluate(function () {
return document.getElementsByClassName('ac-21th')[0].href;
});
yield nightmare.end();
return link;
})(function (err, result) {
if (err) return console.log(err);
console.log(result);
});
它仍然不起作用。
我该如何解决这个噩梦?