Selenium:Runtime.executionContextCreated 具有无效的“上下文":

时间:2023-04-15
本文介绍了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 具有无效的“上下文":的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:pytest->如何在类下的测试方法中使用夹具返回值 下一篇:使用python自动从windows文件对话框打开文件

相关文章