您好,登錄后才能下訂單哦!
本篇內容主要講解“Pytest安裝的詳細教程”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Pytest安裝的詳細教程”吧!
1、安裝Pytest
命令行執行 pip install pytest
2、快速開始
文件路徑
-helloworld
-test_tmp.py
test_tmp.py
"""
文件以test_開始 或者 以 _test結尾的py (test不區分大小寫)
"""
def test_l():
""" test開始的函數會被當做測試用例直接執行"""
assert True
# content of test_sample.py
def inc(x):
return x + 1
def test_answer():
assert inc(3) == 5
執行 pytest 命令,可以自動搜索到test_tmp.py文件中的 2個test 函數作為測試用例執行。
========================================================= test session starts ==========================================================
platform win32 -- Python 3.7.5, pytest-5.3.5, py-1.8.1, pluggy-0.13.1
rootdir: C:\Users\zengy\Desktop\pytest-demo
collected 2 items
helloworld\test_tmp.py .F [100%]
=============================================================== FAILURES ===============================================================_____________________________________________________________ test_answer ______________________________________________________________
def test_answer():
> assert inc(3) == 5
E assert 4 == 5
E + where 4 = inc(3)
helloworld\tmp.py:17: AssertionError===================================================== 1 failed, 1 passed in 0.04s ======================================================
3、selenium test
from selenium import webdriver
def test_login():
driver = webdriver.Chrome()
driver.get('http://39.107.96.138:3000/signin')
driver.find_element_by_css_selector('#name').send_keys("testuser1")
driver.find_element_by_css_selector('#pass').send_keys('123456') driver.find_element_by_css_selector('input[value="登錄"]').click()
# 添加斷言
# 1.登錄成功應該跳轉到首頁
current_url = driver.current_url
assert current_url=="http://39.107.96.138:3000/","應該跳轉到首頁"
# 2. 用戶名應該為testuser1
username = driver.find_element_by_css_selector('span
[class="user_name"]>a[class="dark"]').text
assert username == "testuser1","登錄用戶名應該為testuser1"
def test_register():
pass
到此,相信大家對“Pytest安裝的詳細教程”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。