Selenium:Runtime.executionContextCreated具有无效的'context':

Hum*_*mad 12 python macos selenium automated-tests chrome-web-driver

我在这里看了类似的问题Protractor/Selenium Webdriver:Runtime.executionContextCreated有无效的'context'BUG-1473,但我无法得到答案因此我决定在这里给它.我安装了最新的chrome_driver v2.9,但仍然Runtime.executionContextCreated出错.这是我的代码

from selenium import webdriver

driver = webdriver.Chrome()
driver.get('http://www.google.com/xhtml')
Run Code Online (Sandbox Code Playgroud)

并在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)
Run Code Online (Sandbox Code Playgroud)

小智 10

我有类似的问题,我使用Chrome驱动程序版本2.25的Mac,它的工作原理.


小智 5

我有类似的问题.将Chrome驱动程序版本从2.9降级到2.27后,它可以正常工作.也许你可以试着降级它.


小智 3

您必须将 chromedriver 路径传递给 Chrome() 构造函数

path = '/path/to/chromedriver'

driver = webdriver.Chrome(path)
Run Code Online (Sandbox Code Playgroud)

请告诉我是否已修复。此外,建议尝试使用最新的 chromedriver,并在出现问题时提出问题。