How do I run casper from within the phantomjs shell?

假如想象 提交于 2019-11-30 16:31:42

So to get this stuff to run inside the phantomjs shell first you need to set a casperPath variable in the phantom global object.

phantom.casperPath = "C:/casper";

Then you need to inJect caspers's bootstrap.js file.

phantom.injectJs("C:/casper/bin/bootstrap.js");

Now you can instantiate a casper object and play with it in the shell.

var casper = require("casper").create();

enjoy.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!