Skip to content

Instantly share code, notes, and snippets.

View fdubost's full-sized avatar

Florent Dubost fdubost

View GitHub Profile
/* And then in heavyTest.js */
var MyHeavyTest = function (casperInstance, config, page, perPage) {
// Call parent constructor
MyHeavyTest._super.constructor.call(this, casperInstance, config);
this.page = page;
this.perPage = perPage;
};