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 具有无效的“上下文":
基础教程推荐
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
