ページにリンクがあります:
<a id="quote" href="quote.html" target="_blank">Quote</a>
CasperJS でクリックしても、新しいウィンドウでページをキャプチャできません。
casper.start('http://domain.com');
casper.thenClick('#quote');
casper.then(function() {
this.capture('file1.png');
});
casper.run();