How do I run casper from within the phantomjs shell?

痴心易碎 提交于 2019-11-29 23:54:32

问题


Anyone know if and how it's possible to run casperjs from within the phantomjs shell (a.k.a InteractiveModeREPL )?

I've also tried passing the direct path to the casper.js module and that has not worked either.

Progress/Update:

  • Tried phantomjs.injectJs('C:/casperjs/module/casper.js'); but got Error: Cannot find module 'colorizer' I guess I'm getting close.
  • This gets me closer but still missing path:
    • phantomjs.injectJs('C:/casperjs/module/bin/bootstrap.js')
      • errors out with Cannot find package.json at C:/package.json
    • OK, looks like I can pass the --casper-path option when starting phantomjs (see - casper/bin/bootstrap.js: line 189).
    • OK that worked. (passing the option did not work but setting the path inside of phantom did).

回答1:


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.



来源:https://stackoverflow.com/questions/13101460/how-do-i-run-casper-from-within-the-phantomjs-shell

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