我尝试使用以下命令运行我的 test.js 文件:
DEBUG=nightmare node --harmony test.js
并输出:
nightmare queueing action "goto" for http://google.com +0ms
nightmare queueing action "wait" +2ms
nightmare queueing action "screenshot" +0ms
测试.js:
var Nightmare = require('nightmare');
var google = new Nightmare()
.goto('http://google.com')
.wait()
.screenshot("./screen.png")
.run(function(err, nightmare) {
if (err) return console.log(err);
console.log('Done!');
});
没有截图和链接访问。有什么想法吗?
注意:我正在使用 Linux 来宾开发 Virtual Box。