casperjs Getting started with casperjs

30% OFF - 9th Anniversary discount on Entity Framework Extensions until December 15 with code: ZZZANNIVERSARY9

Remarks

This section provides an overview of what casperjs is, and why a developer might want to use it.

It should also mention any large subjects within casperjs, and link out to the related topics. Since the Documentation for casperjs is new, you may need to create initial versions of those related topics.

First program to getting started

var casper = require('casper').create();
casper.start('http://casperjs.org/');

casper.then(function() {
    this.echo('First Page: ' + this.getTitle());
});

casper.thenOpen('http://phantomjs.org', function() {
    this.echo('Second Page: ' + this.getTitle());
});

casper.run();
 

Installation or Setup

Detailed instructions on getting casperjs set up or installed.



Got any casperjs Question?