2017-08-25 113 views
0

我對硒完全陌生,當我寫這段代碼時,我從chrome中得到一個錯誤,提示「chrome驅動程序已停止工作」,並要求我關閉chrome或不要。chromedriver已停止工作

from selenium import webdriver 
chrome_path="C:\Python27\Scripts\chromedriver.exe" 
driver=webdriver.Chrome(chrome_path) 
driver.get("https://www.google.com") 

後,我執行這條線在我的空閒

司機= webdriver.Chrome(chrome_path)

打開Chrome瀏覽器,但是他說「您正在使用不支持的命令行標誌: - 忽略證書錯誤,穩定性和安全性將受到影響。「它會彈出一個對話框,告訴我「禁止開發者模式擴展」

後,我鍵入此行

driver.get(「https://www.google.com」)

出現一個對話框說chromedriver.exe已停止工作,它給了我一個關閉程序的按鈕。有時候這不會馬上出現,因此我在IDLE GUI中遇到了一些這樣的錯誤。 Click me for the error image

幾個細節: -

Chrome的版本: - 60.0.3112.101

chromedriver版本: - 2.9.248315

Python版本: - 2.7.13

+0

你應該[您chromedriver升級到2.31(https://chromedriver.storage.googleapis.com/index.html?path=2.31/)...... –

+1

@SaurabhGaur非常感謝隊友,是我的固定問題! – Revanth

回答