# -*- coding: utf-8 -*- # @Time : 2019/9/3 11:42 # @Author : wujf # @Email : 1028540310@qq.com # @File : selenium相關.py # @Software: PyCharm ''' 谷歌驅動下載連接 http://chromedriver.storage.googleapis.com/index.html 個人是100版本的谷歌瀏覽器 ''' from selenium import webdriver driver = webdriver.Chrome(r'C:\Users\lenovo\AppData\Local\Google\Chrome\Application\chromedriver.exe') #driver.maximize_window() #最大化瀏覽器 driver.implicitly_wait(23) url = "https://www.baidu.com" driver.get(url)
最近,我電腦裏面的谷歌瀏覽器不知道怎麼的忽然升級到了100版本的,爲了找這個驅動找了幾天。看官網根本就沒有對應100的驅動。html
因而,通過本人測試:python
這裏我下載的126的版本。真的很難找 。web
http://chromedriver.storage.googleapis.com/index.html(官方連接)chrome
若是是 :api
120 的版本,則對應瀏覽器
的版本。測試
親測經過!google
附上本人網盤地址:url
連接:https://pan.baidu.com/s/1mIN9vl3i6PF5oZKJNbfg8Q&shfl=sharepset
提取碼:0yhz
htm