在Mac(优胜美地)上使用phantomjs#2.0.0运行casperjs的问题

时间:2015-02-22 10:25:02

标签: phantomjs casperjs

我正在 Mac(Yosemite)上运行 CasperJS PhantomJS#2.0.0 。尝试运行 CasperJS 时,我收到以下消息:

"CasperJS needs PhantomJS v1.x

  /usr/local/Cellar/casperjs/1.1-beta3/libexec/bin/bootstrap.js:91 in __die"

如何让它运行?有没有人让它工作?

3 个答案:

答案 0 :(得分:8)

目前没有比1.1-beta3更新的版本包含此支票。

最简单的解决方法是打开bin / bootstrap.js文件和remove these lines或替换当前master branch中的行:

(function (version) {
    // required version check
    if (version.major === 1) {
        if (version.minor < 8) {
            return __die('CasperJS needs at least PhantomJS v1.8 or later.');
        }
        if (version.minor === 8 && version.patch < 1) {
            return __die('CasperJS needs at least PhantomJS v1.8.1 or later.');
        }
    } else if (version.major === 2) {
        console.log("Warning PhantomJS v2.0 not yet released. There will not be any official support for any bugs until stable version is released!");
    }
    else return __die('CasperJS needs PhantomJS v1.x or v2.x');
})(phantom.version);

另一种选择是install CasperJS from git

答案 1 :(得分:5)

修改/usr/local/Cellar/casperjs/1.1-beta3/libexec/bin/bootstrap.js对我不起作用。我尝试了但仍然存在其他一些问题(无法正确获取casperPath和版本)。

此问题已在主分支中修复。从git安装可以解决这个问题。

尝试

> git clone git://github.com/n1k0/casperjs.git
> cd casperjs
> ln -sf `pwd`/bin/casperjs /usr/local/bin/casperjs

它完美地修复了我的casperjs。

答案 2 :(得分:3)

我遇到了同样的问题。用版本1.9.8替换/ usr / local / bin中的phantomJS可执行文件对我来说很有用。