Skip to content

Instantly share code, notes, and snippets.

@naosim
Created April 28, 2016 03:41
Show Gist options
  • Save naosim/db5883a17f88fee57e5743a106db0c87 to your computer and use it in GitHub Desktop.
Save naosim/db5883a17f88fee57e5743a106db0c87 to your computer and use it in GitHub Desktop.
webサイトをcasperでキャプチャする
// カレンダーを表示する
(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