6

关于 PhantomJS 缺少 Function.prototype.bind 方法的讨论在这里和其他地方有很多,许多有用的慈善家已经编写了 shims/polyfills 或将其他人指向这些资源。我正在通过 Selenium Webdriver 和 Python 绑定来实现 PhantomJS。我尝试了几种方法来使用这个 polyfill,但都无济于事。目前我在我的 webdriver-inheriting 测试器类中使用以下代码:

    bindShim = """var script = document.createElement('script');
    script.src = '/home/dunkin/scripts/es5-shim.js';***
    script.type = 'text/javascript';
    document.getElementsByTagName('head')[0].appendChild(script);
    """
    self.execute_script(bindShim)

每次访问新页面时,我都会执行此代码。事实上,这种方法可以确保 PhantomJS 理解 jQuery 变量。但是,我仍然在我的 PhantomJS 驱动程序日志中看到以下内容:

[ERROR - 2015-02-10T17:43:44.068Z] Session [fd37e5c0-b14b-11e4-b9e3-5bbebfaf3f9d] - page.onError - msg: TypeError: 'undefined' is not a function (evaluating 'arguments.callee.bind(this,e)')
[ERROR - 2015-02-10T17:43:44.069Z] Session [fd37e5c0-b14b-11e4-b9e3-5bbebfaf3f9d] - page.onError - stack:
  (anonymous function) (https://jsta.sh/media/all.js?1459:16)
  t (https://jsta.sh/media/all.js?1459:16)
  (anonymous function) (https://jsta.sh/media/all.js?1459:17)
  (anonymous function) (https://jsta.sh/media/all.js?1459:8)
  (anonymous function) (https://jsta.sh/media/all.js?1459:8)
  (anonymous function) (https://jsta.sh/media/all.js?1459:8)
  I (https://jsta.sh/media/all.js?1459:2)

等等

我的希望是,尽管与有关此 .bind() 问题的其他问题密切相关,但我的问题对于那些通常希望为其开箱即用的 Selenium PhantomJS 实现添加功能的人很有用。如果我可以修改由我的 Ghostdriver-PhantomJS-Selenium 堆栈实现的 JavaScript 库,而不是直接将 es5 shim 添加到我访问的每个页面,我会很高兴,但我不确定我该怎么做或是否可以这样做。开始觉得如果我只是在裸 PhantomJS 上构建这个测试器而不是通过另一个框架过滤它,这样的事情会更简单。

我的规格:

  • 硒版本 1.43
  • 幻影JS 1.98
  • 蟒蛇 2.7
  • Ubuntu 14.04 LTS(GNU/Linux 3.17.1-弹性 x86_64)

*** 当我在 phantomjs 控制台中使用 es5-shim 时,它会产生以下有希望的结果:

phantomjs> console.log(Object.keys)
function keys() {
    [native code]
}
undefined
phantomjs> var shim = require("/home/dunkin/scripts/es5-shim.js")
undefined
phantomjs> console.log(Object.keys)
function keys(object) {
        if (isArguments(object)) {
            return originalKeys(ArrayPrototype.slice.call(object));
        } else {
            return originalKeys(object);
        }
    }
undefined
phantomjs> 
4

1 回答 1

0

当前版本 2.1 似乎将 polyfill 包含在 phatomjs 发行版中。尝试下载最新的

于 2018-05-11T06:37:52.083 回答