簡體   English   中英

使用 selenium 安裝 chrome 驅動程序

[英]chrome driver install with selenium

我已經正確安裝了 selenium 和 chromedriver 並想在 python 上執行下面的代碼

import selenium
from selenium import webdriver
driver = webdriver.Chrome(executable_path=r"C:\Users\SM.Nibir\Desktop\Python\chromedriver_win32\chromedriver.exe")

但我在輸出面板上收到這些錯誤

During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "c:/Users/SM. Nibir/Desktop/Python/import os.py", line 3, in <module>
    driver = webdriver.Chrome()
  File "C:\python\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 73, in __init__
    self.service.start()
  File "C:\python\lib\site-packages\selenium\webdriver\common\service.py", line 81, in start
    raise WebDriverException(
selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home

誰能解決這個問題並使這段代碼正常工作?

首先,你的第一個錯誤是你寫了“import selenium from..”所以順序必須是這樣的:

from selenium import webdriver
driver=webdriver.Chrome(executable_path=r"C:\Users\...chromedriver.exe")

當然,您需要更改 chromedriver.exe 文件的正確位置的路徑。

如果有幫助,請告訴我。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM