mac os+selenium2+chrome驅動+python3

來源:互聯網
上載者:User

標籤: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
  • 1
  • 1
sudo apt-get install python3-pip
  • 1
  • 1

若使用命令有問題,可自行到官網下載相應安裝包,執行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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.