chrome浏览器驱动下载地址:
- http://npm.taobao.org/mirrors/chromedriver/
- http://chromedriver.storage.googleapis.com/index.html
下载chromedriver_win32.zip解压后放至python安装目录下的Scripts目录下,并将该路径加入path环境变量中
将chrome的安装路径加入path环境变量中
安装selenium库
pip install selenium
测试
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('https://www.baidu.com')