Python splinter安裝與使用

HuangZhang_123發表於2017-02-21

歡迎加入學習交流QQ群:657341423


Splinter是一個使用Python開發的開源Web應用測試工具。它可以幫你實現自動瀏覽站點和與其進行互動。python中實現自動化操作的庫有Splinter,selenium用於操控網站,其次,requests,scrapy,BeautifulSoup 用於獲取資料網站較多。scrapy其實是框架形式,適用於大規模爬蟲
Splinter可以直接使用pip install splinter安裝即可,不過直接使用需要自行下載WebDriver,比如使用的谷歌瀏覽器,需要下載chromedriver.exe,放到python安裝目錄下即可。
測試程式碼:

from splinter import Browser
MCBrowser=Browser("chrome")
MCBrowser.visit("https://www.baidu.com/")

執行py檔案即可實現自動開啟網頁並轉到百度網址。
具體關於庫的使用方法可以參考官方文件:
https://splinter.readthedocs.io/en/latest/index.html


相關文章