Created
April 28, 2016 03:41
-
-
Save naosim/db5883a17f88fee57e5743a106db0c87 to your computer and use it in GitHub Desktop.
webサイトをcasperでキャプチャする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// カレンダーを表示する | |
(function() { | |
var url = 'http://google.com'; | |
var width = 1000; | |
var height = 400; | |
var casper = require('casper').create(); | |
casper.start(url); | |
casper.viewport(width, height); | |
casper.then(function() { | |
this.capture('google.png'); | |
}); | |
casper.run(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment