標籤:char 移動 repr imp 圖片 使用 driver 查看 tar
mac os 10.11.5
mac內建python2.7,自己下載了python3.5,pip list查看系統中的安裝包,本人電腦中已經安裝了pip和setuptools,若未安裝,請先使用
sudo apt-get install python3-setuptools
sudo apt-get install python3-pip
若使用命令有問題,可自行到官網下載相應安裝包,執行Python setup.py install 安裝即可;
1、安裝selenium
執行 python3 -m pip install selenium
2、安裝chrome驅動
驅動:http://docs.seleniumhq.org/download/選擇對應系統的瀏覽器驅動
或者直接到
https://sites.google.com/a/chromium.org/chromedriver/下載最新版mac chrome驅動(需FQ);
我下載了mac64.zip和linux64.zip,共用地址:
連結: https://pan.baidu.com/s/1nvdKv7F 密碼: uc2i
使用uname -a
查看自己的系統是64位還是32位;
3、配置chrome驅動
將解壓後的chromedriver移動到/usr/local/bin目錄下
否則在運行指令碼時,會提示
chromedriver executable needs to be in PATH錯誤
4、selenium第一個指令碼
編寫第一個selenium指令碼程式:
#!/user/bin/env python# -*-coding:utf-8-*-# @time : 16/11/8 12:09# @Author : Zhangxy# @File : 001baiduSearch.py# @Software : PyCharmfrom selenium import webdriverdriver = webdriver.Chrome()driver.get("http://www.baidu.com")driver.find_element_by_id(‘kw‘).send_keys(‘selenium‘)driver.find_element_by_id(‘su‘).click()#driver.quit()
mac os+selenium2+chrome驅動+python3