Casper.jsをインストール
参考サイト
Macの場合はhomebrewで一発
1
| brew install phantomjs casperjs
|
Phantom.jsをインストール
1
2
3
| wget https://phantomjs.googlecode.com/files/phantomjs-1.9.1-linux-x86_64.tar.bz2
tar jxfv phantomjs-1.9.1-linux-x86_64.tar.bz2
sudo cp phantomjs-1.9.1-linux-x86_64/bin/phantomjs /usr/local/bin/
|
Casper.jsをインストール
1
2
3
4
| wget https://github.com/n1k0/casperjs/archive/1.1-beta1.tar.gz
tar zxfv 1.1-beta1.tar.gz
cd casperjs-1.1-beta1/
sudo ln -sf `pwd`/bin/casperjs /usr/local/bin/casperjs
|
Googleのキャプチャを撮ってみる
1
2
3
4
5
6
| casper = require("casper").create()
casper.start "http://google.com/", ->
@capture "google.png"
return
casper.run()
|