I am trying to use casperjs on a react app and noticed that screenshots were coming back as blank. So, I tried a different app and got the same result.
So, here is a react app I found - http://jaredly.github.io/github-issues-viewer/#rails/rails/0 and here is the casperjs code
var casper = require('casper').create();
casper.start('http://jaredly.github.io/github-issues-viewer/#rails/rails/0', function() {
this.echo(this.getTitle());
this.capture('im.png')
});
The image shows blank info
How do I resolve this?