selenium 安裝與 chromedriver安裝

 

selenium 安裝與 chromedriver安裝

安裝selenium

selenium能夠直接能夠用pip安裝。html

pip install selenium

安裝chromedriver

 下載

chromedriver的版本必定要與Chrome的版本一致,否則就不起做用。web

有兩個下載地址:chrome

一、http://chromedriver.storage.googleapis.com/index.htmlnpm

二、https://npm.taobao.org/mirrors/chromedriver/api

固然,你首先須要查看你的Chrome版本,在瀏覽器中輸入chrome://version/瀏覽器

例如個人版本是72.0.3626,因此下載測試

 配置

解壓壓縮包,找到chromedriver.exe複製到chrome的安裝目錄(其實也能夠隨便放一個文件夾)。複製chromedriver.exe文件的路徑並加入到電腦的環境變量中去。具體的:ui

進入環境變量編輯界面,添加到用戶變量便可,雙擊PATH,將你的文件位置(C:\Program Files (x86)\Google\Chrome\Application\)添加到後面。google

完成後在cmd下輸入chromedriver驗證是否安裝成功:spa

 測試

未配置環境也能夠,例如:

複製代碼

from selenium import webdriver
import time

def main():
    chrome_driver = 'C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe'  #chromedriver的文件位置
    b = webdriver.Chrome(executable_path = chrome_driver)
    b.get('https://www.google.com')
    time.sleep(5)
    b.quit()

if __name__ == '__main__':
    main()

複製代碼

已配置環境變量時

複製代碼

from selenium import webdriver
import time

def main():
    b = webdriver.Chrome()
    b.get('https://www.baidu.com')
    time.sleep(5)
    b.quit()

if __name__ == '__main__':
    main()

複製代碼

若是運行時提示

極可能是chromedriver的版本不對(不要問我怎麼知道的)。



參考連接:

一、https://blog.csdn.net/qq_41429288/article/details/80472064

二、https://www.cnblogs.com/LeslieForever/p/8317158.html

 

http://www.javashuo.com/article/p-oiogqyoq-cm.html

ChromeDriver Version    Chrome Version
83.0.4103.39    83
83.0.4103.14    83
81.0.4044.138    81
81.0.4044.69    81
81.0.4044.20    81
80.0.3987.106    80
80.0.3987.16    80
79.0.3945.36    79
79.0.3945.16    79
78.0.3904.105    78
78.0.3904.70    78
78.0.3904.11    78
77.0.3865.40    77
77.0.3865.10    77
76.0.3809.126    76
76.0.3809.68    76
76.0.3809.25    76
76.0.3809.12    76
75.0.3770.90    75
75.0.3770.8    75
74.0.3729.6    74
73.0.3683.68    73
72.0.3626.69    72
2.46    71-73
2.46    71-73
2.45    70-72
2.44    69-71
2.43    69-71
2.42    68-70
2.41    67-69
2.40    66-68
2.39    66-68
2.38    65-67
2.37    64-66
2.36    63-65
2.35    62-64



































ChromeDriver與Chrome版本對應參照表及ChromeDriver下載連接

相關文章
相關標籤/搜索