gpt4 book ai didi

javascript - 使用 Selenium 和 PhantomJS 将 javascript polyfill 注入(inject)页面

转载 作者:搜寻专家 更新时间:2023-11-01 04:41:10 24 4
gpt4 key购买 nike

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

    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 填充程序添加到我访问的每个页面,我会很高兴,但我不确定我该怎么做或者是否可以。开始觉得如果我只是在裸机 PhantomJS 上构建这个测试器而不是通过另一个框架过滤它,这样的事情会更简单。

我的规范:

  • Selenium 1.43 版
  • PhantomJS 1.98
  • python 2.7
  • Ubuntu 14.04 LTS (GNU/Linux 3.17.1-elastic 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>

最佳答案

当前版本 2.1 似乎已将 polyfill 包含在 phatomjs 分发中。试试download the latest one .

关于javascript - 使用 Selenium 和 PhantomJS 将 javascript polyfill 注入(inject)页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28438553/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com