浏览器爬虫入门:Python+Selenium+ChromeDriver

下载对应版本的chromedriver.exe: http://chromedriver.storage.googleapis.com/index.html

下载后将chromedriver.exe放到python安装目录的Scripts目录下

from selenium import webdriver
import os

driver = webdriver.Chrome()
driver.get('http://www.baidu.com')
driver.close() # 需要关闭driver
os.system('taskkill /f /im chromedriver.exe') #需要杀掉进程
#如果pycharm执行os.system操作产生乱码:
# File > Settings > Editor > File Encodings,将Global Encoding改成GBK即可。

 

上一篇:laravel webpack填坑(陆续更)


下一篇:temp