SpookyJSでマウスを使用するには? CasperJS では、マウスを使用できます。
var casper = require('casper').create();
var mouse = require("mouse").create(casper);
SpookyJS でどうすればできますか?
モジュール内の Casper プロトタイプ (他の CasperJS モジュールを含む) にアクセスするには、CasperJS スコープ内でアクセスする必要があります。
https://github.com/SpookyJS/SpookyJS/wiki/Introductionで説明されているように:
//this is nodejs environement
//declare your spooky instance here
spooky.start('http://example.com/the-page.html');
spooky.then(function () {
// this function runs in Casper's environment
//here you can access to mouse module. Example :
this.mouse.click(400, 300);
});
spooky.thenEvaluate(function () {
// this function runs in the page's environment
})
// this function (and the three spooky calls above) runs in Spooky's environment
spooky.run();