Getting started with casperjs

Other topics

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.

Installation or Setup

Detailed instructions on getting casperjs set up or installed.

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();

Contributors

Topic Id: 10146

Example Ids: 31106,31108

This site is not affiliated with any of the contributors.