Web自动化-浏览器驱动chromedriver安装方法

1.python中安装好selenium包  pip install selenium

2.根据以下驱动对照表下载Chrome对驱动

点击下载chrome的webdriver:http://chromedriver.storage.googleapis.com/index.html,目前只有32位的。

1.驱动下载完成,解压

2.将解压后文件chromedriver.exe复制到python的Scripts安装目录下(我的:E:\Python\Python36-32\Scripts),并且添加到path环境变量

3.将目录chrome的安装目录添加到path环境变量。(我的:C:\Program Files (x86)\Google\Chrome\Application\chrome.exe)

4.运行下面代码:成功打开百度即为成功:

        from selenium import webdriver

        driver = webdriver.Chrome()       

  driver.get('http://www.baidu.com')

你可能感兴趣的:(Web自动化-浏览器驱动chromedriver安装方法)