python – Selenium:Runtime.executionContextCreated有无效的’context’:
作者:互联网
我在Protractor / Selenium Webdriver : Runtime.executionContextCreated has invalid ‘context’和BUG-1473看到了类似的问题,但是我无法得到答案,所以我决定在这里给它.
我安装了最新的chrome_driver v2.9,但仍然收到Runtime.executionContextCreated错误.
这是我的代码
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('http://www.google.com/xhtml')
并在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的Mac,它的工作原理.
标签:python,selenium,macos,automated-tests,chrome-web-driver 来源: https://codeday.me/bug/20191006/1860271.html