安裝seleniumselenium可以直接可以用pip安裝。 pip install selenium 安裝chromedriver下載chromedriver的版本一定要與Chrome的版本一致,,不然就不起作用,。 有兩個(gè)下載地址: 1、http://chromedriver.storage./index.html 2,、https://npm./mirrors/chromedriver/ 當(dāng)然,,你首先需要查看你的Chrome版本,在瀏覽器中輸入chrome://version/ 例如我的版本是72.0.3626,,所以下載 配置解壓壓縮包,,找到chromedriver.exe復(fù)制到chrome的安裝目錄(其實(shí)也可以隨便放一個(gè)文件夾)。復(fù)制chromedriver.exe文件的路徑并加入到電腦的環(huán)境變量中去,。具體的: 進(jìn)入環(huán)境變量編輯界面,,添加到用戶變量即可,,雙擊PATH,將你的文件位置(C:\Program Files (x86)\Google\Chrome\Application\)添加到后面,。 完成后在cmd下輸入chromedriver驗(yàn)證是否安裝成功: 測(cè)試未配置環(huán)境也可以,,例如: 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() 已配置環(huán)境變量時(shí) 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() 如果運(yùn)行時(shí)提示 很可能是chromedriver的版本不對(duì)(不要問(wèn)我怎么知道的)。
1,、https://blog.csdn.net/qq_41429288/article/details/80472064 |
|