Commit efb8fe92 efb8fe92b129052980415094ec6d0f59908e21e0 by Nicolas Perriault

updated samples/screenshot.js

1 parent 52a67cb5
...@@ -5,7 +5,11 @@ if (!phantom.casperLoaded) { ...@@ -5,7 +5,11 @@ if (!phantom.casperLoaded) {
5 5
6 var casper = new phantom.Casper({ 6 var casper = new phantom.Casper({
7 logLevel: "debug", 7 logLevel: "debug",
8 verbose: true 8 verbose: true,
9 viewportSize: {
10 width: 800,
11 height: 600
12 }
9 }); 13 });
10 14
11 casper.start('https://twitter.com/#!/twilio', function(self) { 15 casper.start('https://twitter.com/#!/twilio', function(self) {
......