主頁 > 知識庫 > Python測試開源工具splinter安裝與使用教程

Python測試開源工具splinter安裝與使用教程

熱門標簽:銀川電話機器人電話 煙臺電話外呼營銷系統(tǒng) 預覽式外呼系統(tǒng) 外賣地址有什么地圖標注 電銷機器人錄音要學習什么 上海正規(guī)的外呼系統(tǒng)最新報價 如何地圖標注公司 長春極信防封電銷卡批發(fā) 企業(yè)彩鈴地圖標注

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,最終需要安裝兩個:即Selenium2chromedriver。

1. Selenium2直接通過pip安裝:

 pip install selenium

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簡介和使用實例

標簽:潮州 佳木斯 西寧 盤錦 珠海 湖北 上饒 宜昌

巨人網(wǎng)絡通訊聲明:本文標題《Python測試開源工具splinter安裝與使用教程》,本文關鍵詞  Python,測試,開源,工具,splinter,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Python測試開源工具splinter安裝與使用教程》相關的同類信息!
  • 本頁收集關于Python測試開源工具splinter安裝與使用教程的相關信息資訊供網(wǎng)民參考!
  • 推薦文章