splinter介紹
Splinter是一個使用Python測試Web應用程序的開源工具,可以自動化瀏覽器操作,例如訪問URL和與它們的項進行交互。例如,我們使用百度引擎搜索內(nèi)容,需要再搜索框內(nèi)輸入關鍵字,再按百度一下
即可以搜索想要的內(nèi)容,使用Splinter可以使用pyhton腳本來實現(xiàn)上述過程。
Splinter安裝
Splinter的使用需要依賴python環(huán)境,因此首先需要裝python(python安裝可以直接安裝anaconda
集成環(huán)境,網(wǎng)上一搜教程很多~),并且python版本需要是2.7+;以下是Splinter的官網(wǎng)說明:
In order to install Splinter, make sure Python is installed. Note: only Python 2.7+ is supported.
Splinter安裝
Splinter安裝,官網(wǎng)提供了兩種版本安裝,一般使用穩(wěn)定版本即可:
pip install splinter # pip工具首先得安裝,如果安裝anaconda則會自動安裝pip
驅動安裝
要使用splinter訪問瀏覽器,還需要安裝對應的瀏覽器驅動,這里以chrome為例,由于chrome WebDriver
依賴于Selenium2
,最終需要安裝兩個:即Selenium2
和chromedriver
。
1. Selenium2直接通過pip安裝:
2. 對于chromedriver,首先查看瀏覽器版本,在chrome瀏覽器訪問:chrome://version/
。
然后訪問http://chromedriver.storage.googleapis.com/index.html
,找到對應的版本下載即可。
下載解壓后,會得到一個chromedriver.exe
文件,按照官網(wǎng)的說法,需要將其配置環(huán)境變量。簡單的做法,直接將chromedriver.exe
文件放在python安裝的根目錄(即和python.exe
放在同一個目錄===這是因為python.exe
所在的目錄肯定配置了環(huán)境變量)。到這里,環(huán)境配置已經(jīng)OK了,接著就是寫python腳本測試了~
python腳本測試Splinter
from splinter import Browser
from time import sleep
browser = Browser('chrome') # 創(chuàng)建瀏覽器實例
browser.visit('https://www.baidu.com') # 訪問baidu
# 將關鍵詞填入搜索框 通過wd這個名字找到對應的Elements
browser.fill('wd', 'splinter - python acceptance testing for web applications')
browser.find_by_id('su').click() # 通過id找到點擊按鈕,并點擊
if browser.is_text_present('splinter.readthedocs.io'): # 對響應結果進行處理
print("Yes, the official website was found!")
else:
print("No, it wasn't found... We need to improve our SEO techniques")
sleep(10)
browser.quit() # 關閉瀏覽器
其中,browser = Browser('chrome')
的'chrome'
參數(shù)是必須的,如果不指定的話,默認選用火狐瀏覽器,詳見官網(wǎng)說明。
結果:
到此這篇關于Python測試開源工具splinter安裝與使用教程的文章就介紹到這了,更多相關python splinter安裝與使用內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- 基于Python3.6+splinter實現(xiàn)自動搶火車票
- python+splinter自動刷新?lián)屍惫δ?/li>
- Python利用splinter實現(xiàn)瀏覽器自動化操作方法
- 使用Python+Splinter自動刷新?lián)?2306火車票
- Python自動化測試工具Splinter簡介和使用實例