selenium出錯:site-packages\selenium\webdriver\common\service.py", line 76, in start

Traceback (most recent call last):

  File "D:\Python36\lib\site-packages\selenium\webdriver\common\service.py", line 76, in start

    stdin=PIPE)

  File "D:\Python36\lib\subprocess.py", line 709, in __init__

    restore_signals, start_new_session)

  File "D:\Python36\lib\subprocess.py", line 997, in _execute_child

    startupinfo)

FileNotFoundError: [WinError 2] 系統找不到指定的文件。

 

During handling of the above exception, another exception occurred:

 

Traceback (most recent call last):

  File "D:/PycharmProjects/chapter11/seleniumExample.py", line 2, in <module>

    browser = webdriver.Chrome()

  File "D:\Python36\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 68, in __init__

    self.service.start()

  File "D:\Python36\lib\site-packages\selenium\webdriver\common\service.py", line 83, in start

    os.path.basename(self.path), self.start_error_message)

 

selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home

 

Process finished with exit code 1

 

根據錯誤提示:Message: 'chromedriver' executable needs to be in PATH我們可以找到原因所在:chromedriver需要放在python安裝路徑下。

 

所以要把chromedriver放到python安裝路徑下就可以了,不要放到chrome安裝目錄下,沒有起作用

可以從下面下載chromedriver,不同chrome版本,要下載不同chromedriver的版本,要注意對應呀

引用的chorme版本:

# Chrome/81.0.4044.20 就是引用的chorme版本,挑選對應的,也可以自己改
headers = {
            'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.20 Safari/537.36',
        }

下面是chromedriver下載的路徑,請放心下載使用

http://chromedriver.storage.googleapis.com/index.html

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章