關(guān)于框架:
Vantpy框架基于Selenium2+ unittest 搭建的WebUI自動(dòng)化測試框架
特點(diǎn):
使用POM(頁面對象模式)設(shè)計(jì)多矮,使我們寫的代碼更加簡單炭剪,后期更加容易維護(hù)以及復(fù)用性更高
支持多種定位方式,包括(xpath/css/ID/text/link_text/name)
框架集成了Selenium的常用定位方法,也是在我們經(jīng)常使用到的方法
使用HTMLTestRunner框架自動(dòng)生成測試報(bào)告可款,使我們更直觀查看報(bào)告的內(nèi)容
集成斷言一層驗(yàn)證,截圖二層驗(yàn)證的方法克蚂,使我們的定位問題精準(zhǔn)性更高
部署環(huán)境:
Python 3.6+:https://www.python.org/
Selenium3.8.0+:https://pypi.python.org/pypi/selenium
支持的瀏覽器及驅(qū)動(dòng):
基于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'
...
自動(dòng)化測試報(bào)告:
框架的源碼已經(jīng)分享到github了闺鲸,喜歡學(xué)習(xí)的話可以直接clone就可以了:點(diǎn)擊這里