The process started from chrome location C:..ChromeApplicationchrome.exe is no longer running, so ChromeDriver is assuming that Chrome has crashed(从 chrome 位置 C:..ChromeApplicationchrome.exe 开始的进程不再运行,因此 ChromeDriver 假设 Chrome 已崩溃)
问题描述
Chrome 版本:68.0.3440.106
Chrome 网络驱动程序版本:ChromeDriver 2.41.578737
Python版本:Python 3.5.2
Chrome version: 68.0.3440.106
Chrome webdriver version: ChromeDriver 2.41.578737
Python Version : Python 3.5.2
我用python写了这段代码:
I write this code in python:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
o = webdriver.ChromeOptions()
o.add_argument("disable-extensions");
o.add_argument("--start-maximized");
driver = webdriver.Chrome(executable_path=r"chromedriver.exe",options=o)
driver.get("http://www.python.org")
assert "Python" in driver.title
elem = driver.find_element_by_name("q")
elem.clear()
elem.send_keys("pycon")
elem.send_keys(Keys.RETURN)
assert "No results found." not in driver.page_source
driver.close()
几秒钟后,chrome 打开并出现此错误:
after few seconds chrome opened with this error:
直到我关闭 chrome 并得到这个异常,什么都没有发生:
and nothing happend till i close chrome and get this exception:
Traceback (most recent call last):
File ".../game.py", line 8, in <module>
driver = webdriver.Chrome(executable_path=r"chromedriver.exe",options=o)
File "...PythonPython35-32libsite-packagesseleniumwebdriverchromewebdriver.py", line 75, in __init__
desired_capabilities=desired_capabilities)
File "...PythonPython35-32libsite-packagesseleniumwebdriver
emotewebdriver.py", line 156, in __init__
self.start_session(capabilities, browser_profile)
File "...PythonPython35-32libsite-packagesseleniumwebdriver
emotewebdriver.py", line 251, in start_session
response = self.execute(Command.NEW_SESSION, parameters)
File "...PythonPython35-32libsite-packagesseleniumwebdriver
emotewebdriver.py", line 320, in execute
self.error_handler.check_response(response)
File "...PythonPython35-32libsite-packagesseleniumwebdriver
emoteerrorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: exited normally
(unknown error: unable to discover open pages)
(The process started from chrome location C:Program Files (x86)GoogleChromeApplicationchrome.exe is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
(Driver info: chromedriver=2.41.578737 (49da6702b16031c40d63e5618de03a32ff6c197e),platform=Windows NT 10.0.17134 x86_64)
推荐答案
我最近在使用 TeamCity 时遇到了这个问题,这是由于 chrome(和 chromedriver)在执行我的脚本后没有关闭造成的.插入taskkill/f/im chrome.exe"和taskkill/f/im chromedriver.exe"修复了这个问题.
I recently had this issue using TeamCity, which was caused by chrome (and chromedriver) not shutting down after executing my script. inserting "taskkill /f /im chrome.exe" and "taskkill /f /im chromedriver.exe" fixed this issue.
这篇关于从 chrome 位置 C:..ChromeApplicationchrome.exe 开始的进程不再运行,因此 ChromeDriver 假设 Chrome 已崩溃的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 chrome 位置 C:..ChromeApplicationchrome.exe 开始的进程不再运行,因此 ChromeDriver 假设 Chrome 已崩溃
基础教程推荐
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 筛选NumPy数组 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01