brew install phantomjs
http://phantomjs.org/download.html
console.log('Hello, world!');
phantom.exit();
phantomjs hello.js
Hello, world!が表示されればインストール成功です。
var page = require('webpage').create();
page.open('http://www.yahoo.co.jp', function(status) {
console.log("Status: " + status);
if(status === "success") {
page.render('page.png');
}
phantom.exit();
});
phantomjs page.js
同じフォルダに page.png というキャプチャ画像があれば成功です。