CasperJS 绑定问题

IT技术 javascript phantomjs instagram casperjs
2021-01-20 17:37:34

我正在尝试访问 Instagram 页面,但没有运气。我不断收到错误和空白屏幕截图。

错误文本:

TypeError: 'undefined' is not a function (evaluating 'a.createDescriptor.bind(null,t)')

Casperjs --version 是 1.1.0-beta3。

基本上我使用以下代码:

var casper = require('casper').create({
    verbose: true,
    logLevel: 'debug',
    pageSettings: {
         userAgent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4'
    },
    loadPlugins: true
});

casper.on( 'page.error', function (msg, trace) {
    this.echo( 'Error: ' + msg, 'ERROR' );
});

casper.start('http://instagram.com/hello', function() {
    casper.wait(3000, function()  {
        this.capture('screen.png');
    });
});

casper.run(function() {
    this.exit();
});
1个回答

如果使用 PhantomJS 2,则不再需要下面的垫片。遗憾的是 CasperJS 1.1-beta3 还不支持它,所以你可能想使用GitHub的 master 分支


问题是 PhantomJS v1.x 不支持Function.prototype.bind. 你需要为此添加一个垫片。在 CasperJS 中,它进入page.initialized事件处理程序。这个 shim在 instragram 上对我很有效:

casper.on( 'page.initialized', function(){
    this.evaluate(function(){
        var isFunction = function(o) {
          return typeof o == 'function';
        };

        var bind,
          slice = [].slice,
          proto = Function.prototype,
          featureMap;

        featureMap = {
          'function-bind': 'bind'
        };

        function has(feature) {
          var prop = featureMap[feature];
          return isFunction(proto[prop]);
        }

        // check for missing features
        if (!has('function-bind')) {
          // adapted from Mozilla Developer Network example at
          // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/bind
          bind = function bind(obj) {
            var args = slice.call(arguments, 1),
              self = this,
              nop = function() {
              },
              bound = function() {
                return self.apply(this instanceof nop ? this : (obj || {}), args.concat(slice.call(arguments)));
              };
            nop.prototype = this.prototype || {}; // Firefox cries sometimes if prototype is undefined
            bound.prototype = new nop();
            return bound;
          };
          proto.bind = bind;
        }
    });
});

如果将 shim 导出到它自己的文件中并通过clientScripts选项包含它,则它不起作用,因为它们被附加在 instagram javascript 之后,为时已晚。

也可能有效的是注册page.resource.received事件。

还有一个纯粹的 PhantomJS 问题:bind polyfill for PhantomJS

您可能希望将 PhantomJS 更新到版本 2,并从 GitHub 上的 master 分支使用 CasperJS。
2021-03-25 17:37:34
是的,这将使它变得不必要,但正如我所说,目前存在一些障碍,因为目前没有支持 PhantomJS 2 的 CasperJS 版本。
2021-03-29 17:37:34
非常感谢您的这个答案,它也适用于 facebook 。
2021-03-31 17:37:34
哦,谢谢,这会使这个解决方案变得不必要吗?
2021-04-05 17:37:34
只是想为谷歌添加一些标签以防止其他人搜索错误的东西(就像我一样) casperjs casper 不渲染 svg png 透明 png 不捕获没有捕获
2021-04-07 17:37:34