1. 程式人生 > >selenium打不開chrome

selenium打不開chrome

.exe ken div conn ogr CA location Coding res

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