- 安装selenium
pip install selenium
2.安装Chrome driver
下载解压,你会得到一个chromedriver.exe文件,需要把这家伙放到chrome的安装目录下...\Google\Chrome\Application\ ,然后设置path环境变量,把chrome的安装目录(我的:C:\Program Files\Google\Chrome\Application)加进去
下载链接[http://chromedriver.chromium.org/getting-started]
#!/usr/bin/python
# -*- coding: utf-8 -*-
from selenium import webdriver
import time
import os
profile_dir=r"C:\Users\yan\AppData\Local\Google\Chrome\User Data" # 对应你的chrome的用户数据存放路径
chrome_options=webdriver.ChromeOptions()
chrome_options.add_argument("user-data-dir="+os.path.abspath(profile_dir))
browser=webdriver.Chrome(chrome_options=chrome_options)
browser.maximize_window()
browser.get("http://www.baidu.com")