我在Ubuntu 14.04工作。我已完成npm install phantomjs
,现在我只是想截取一个网页using the simple example in the docs。
这是我的剧本:
var page = require('webpage').create();
page.open('http://github.com/', function() {
page.render('github.png');
phantom.exit();
});
现在我尝试使用phantomjs --debug=true --ssl-protocol=any github.js
运行它。
然而,ReferenceError: Can't find variable: require
失败了。
我做错了什么?
我不确定是否需要允许传出/进入网络连接。
这是完整的错误输出:http://pastebin.com/raw/7p0nSeJx