selenium打不开chrome
Posted When you look into the abyss,
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium打不开chrome相关的知识,希望对你有一定的参考价值。
selenium打不开chrome,出现下面的报错
requests.exceptions.ChunkedEncodingError: ("Connection broken: ConnectionResetError(10054, ‘远程主机强迫关闭了一个现有的连接。‘, None, 10054, None)", ConnectionResetError(10054, ‘远程主机强迫关闭了一个现有的连接。‘, None, 10054, None)
原来是之前为了FQ移动了chrome的路径
from selenium import webdriver options = webdriver.ChromeOptions() options.binary_location=‘C:\Program Files\Google\Chrome\Application\chrome.exe‘ driver=webdriver.Chrome(chrome_options = options)
加入二进制chrome的路径,问题解决
以上是关于selenium打不开chrome的主要内容,如果未能解决你的问题,请参考以下文章