Selenium: Runtime.executionContextCreated has invalid #39;context#39;:(Selenium:Runtime.executionContextCreated 具有无效的“上下文:)
问题描述
我在这里查看了类似的问题 Protractor/Selenium Webdriver : Runtime.executionContextCreated 具有无效的上下文",此处 BUG-1473,但我无法得到答案,因此我决定在这里给出.我安装了最新的 chrome_driver v2.9,但仍然收到 Runtime.executionContextCreated
错误.这是我的代码
I looked the similar question here Protractor / Selenium Webdriver : Runtime.executionContextCreated has invalid 'context' and here BUG-1473, but I cannot get the answer hence I decided to give it here.
I installed latest chrome_driver v2.9, but still getting Runtime.executionContextCreated
error.
Here is my code
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('http://www.google.com/xhtml')
并在 python shell 上抛出异常:
And thrown exception on the python shell:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/humoyun/Documents/virtual_env_fold/flasky/fl_venv/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 248, in get
self.execute(Command.GET, {'url': url})
File "/Users/humoyun/Documents/virtual_env_fold/flasky/fl_venv/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 236, in execute
self.error_handler.check_response(response)
File "/Users/humoyun/Documents/virtual_env_fold/flasky/fl_venv/lib/python2.7/site-packages/selenium/webdriver/remote/errorhandler.py", line 192, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: Runtime.executionContextCreated has invalid 'context': {"auxData":{"frameId":"2061.1","isDefault":true},"id":1,"name":"","origin":"://"}
(Session info: chrome=55.0.2883.95)
(Driver info: chromedriver=2.9.248307,platform=Mac OS X 10.11.3 x86_64)
推荐答案
我遇到了类似的问题,我用的是 chrome 驱动程序版本 2.25 for mac,它工作正常.
i had similar issue , i used chrome driver version 2.25 for mac and it worked.
这篇关于Selenium:Runtime.executionContextCreated 具有无效的“上下文":的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Selenium:Runtime.executionContextCreated 具有无效的“上下文":


基础教程推荐
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 筛选NumPy数组 2022-01-01