Python3+Selenium+unittest自動化UI測試框架
關於框架:
Vantpy框架基於Selenium2+ unittest 搭建的WebUI自動化測試框架
特點:
- 使用POM(頁面對象模式)設計,使我們寫的代碼更加簡單,後期更加容易維護以及復用性更高
- 支持多種定位方式,包括(xpath/css/ID/text/link_text/name)
- 框架集成了Selenium的常用定位方法,也是在我們經常使用到的方法
- 使用HTMLTestRunner框架自動生成測試報告,使我們更直觀查看報告的內容
- 集成斷言一層驗證,截圖二層驗證的方法,使我們的定位問題精準性更高
部署環境:
- Python 3.6+:https://www.python.org/
- Selenium3.8.0+:https://pypi.python.org/pypi/selenium
支持的瀏覽器及驅動:
基於Selenium支持的所有瀏覽器
browser == "Chrome"browser == "firefox"browser == "IE"browser == "phantomjs"browser == "opera"browser == "edge"
geckodriver(Firefox):https://github.com/mozilla/geckodriver/releases
Chromedriver(Chrome):https://sites.google.com/a/chromium.org/chromedriver/home
IEDriverServer(IE):http://selenium-release.storage.googleapis.com/index.html
operadriver(Opera):https://github.com/operasoftware/operachromiumdriver/releases
MicrosoftWebDriver(Edge):https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver
定位元素方式:
search_loc = (By.XPATH,//*[@id="kw"])def input_baidu_text(self,text): self.find_element(*self.search_loc).send_keys(text)By.NAME,百度 By.ID,ID By.LINK_TEXT,Link_text By.CSS_SELECTOR,CSS By.CLASS_NAME,Class_name ...
自動化測試報告:
框架的源碼已經分享到github了,喜歡學習的話可以直接clone就可以了:點擊這裡
推薦閱讀:
※我用Python爬美圖,妹子多多,自己動手不孤獨
※Python實踐2-Paramiko實現互信主機間文件傳輸
※(一)Python密碼學之旅---02古典密碼之凱撒密碼推廣
※構建一個好的Python 學習環境