Drive CasperJS from Node.js.
Note: If you are simply looking to control Phantom from Node and don't need Casper's API, have a look at PhantomJS 1.8, which has native WebDriver support.
SpookyJS is available from npm.
$ npm install spookyRead about how Spooky works in the documentation. API documentation and examples coming soon.
try {
var Spooky = require('spooky');
} catch (e) {
var Spooky = require('../lib/spooky');
}
var spooky = new Spooky({
child: {
transport: 'http'
},
casper: {
logLevel: 'debug',
verbose: true
}
}, function (err) {
if (err) {
e = new Error('Failed to initialize SpookyJS');
e.details = err;
throw e;
}
spooky.start(
'http://en.wikipedia.org/wiki/Spooky_the_Tuff_Little_Ghost');
spooky.then(function () {
this.emit('hello', 'Hello, from ' + this.evaluate(function () {
return document.title;
}));
});
spooky.run();
});
spooky.on('error', function (e, stack) {
console.error(e);
if (stack) {
console.log(stack);
}
});
/*
// Uncomment this block to see all of the things Casper has to say.
// There are a lot.
// He has opinions.
spooky.on('console', function (line) {
console.log(line);
});
*/
spooky.on('hello', function (greeting) {
console.log(greeting);
});
spooky.on('log', function (log) {
if (log.space === 'remote') {
console.log(log.message.replace(/ \- .*/, ''));
}
});A minimal example can be found in the repo under examples. Run it like this in
a cloned repo:
$ node examples/hello.jsRun it like this if you installed Spooky via npm:
$ node node_modules/spooky/examples/hello.jsA small example Cucumber.js test suite can be found in the repo under examples/cucumber. To run the suite:
$ make cucumber.jsYou may change the port that the fixture server runs on by setting the TEST_PORT make parameter.
See the tests for an example of how to use SpookyJS with Mocha.
Spooky's stdio transport reportedly does not work on Windows and Ubuntu.
The http transport hangs when using Phantom 1.8 with older versions of
CasperJS.
SpookyJS includes a suite of unit tests, driven by Mocha. To run the tests:
$ make testThe following make parameters are supported (defaults are in parentheses):
TEST_REPORTERthe Mocha reporter to use (dot)TEST_PORTthe port to run the fixture web server on (8080)TEST_TIMEOUTthreshold in ms to timeout a test (4000)TEST_SLOWthreshold in ms to say a test is slow (2000)TEST_ARGSAdditional arguments to pass through to MochaTEST_DEBUGPrint debug logging to the console (false)TEST_TRANSPORTthe Spooky transport to use when running the tests (stdio)
- fix #95 (thanks @ChrisAntaki)
- disable Node 0.8 Travis build
- support CasperJS v1.0.3+ (thanks @rumca and @ucarbehlul)
- use a spec-compliant implementation of
Function.prototype.bind - add
options.child.spawnOptions: its value is passed thru as theoptionsargument tochild_process.spawn - serialize function and function tuple values in
options.casper - teach test to throw if Spooky emits an error
- implement
withFrame,withPopup, andwaitForPopup(thanks @asciidisco) - use HTTP transport by default in hello example
- fix invalid argument order in
RequestStream._onError(Dmitry Menshikov)
- Allow casper restart in stdio server (@kpdecker)
- Fix #51 by correctly inheriting from EventEmitter (thanks @tomchentw)
- Move emit to a module and provide emitting console module
- Node 0.10 support
- use Phantom 1.9's
system.stdinfor stdio transport - add
phantom.onErrorhandler. Spooky now emits an error event and exits non-zero if an unhandled JS error occurs in the Phantom context. - add
thenClickmethod (@andresgottlieb) - fix #28
SpookyJS is made available under the MIT License.
The image tests/fixtures/fail-road.jpeg is the work Fail
Road and is
copyright (c) 2007
fireflythegreat and made
available under an Attribution 2.0
Generic license.