python 爬虫 :selenium 环境搭建


python环境是基于anaconda搭建的3.6基础之上,操作系统的是mac

  • 模块和驱动安装
pip install selenium  #安装selenium 模块
conda install phantomjs #安装phantomjs驱动
  • Chrome驱动安装
    下载地址 http://npm.taobao.org/mirrors/chromedriver/2.34/
# cd /usr/local/bin
# open . 

拷贝下载的文件到当前打开的文件夹下

#执行代码
from selenium import webdriver 
browser = webdriver.Chrome()
#弹出chrome浏览器

更多内容,欢迎关注公众号


python 爬虫 :selenium 环境搭建_第1张图片
seeling_GIS

你可能感兴趣的:(python 爬虫 :selenium 环境搭建)