标签:scope 添加 import imp -- sse pre sea search
import pytest
@pytest.fixture(scope="session")
def login():
print("\n输入用户名密码登陆! configtest")
yield
print("退出登陆")
def test_cart(login):
print(‘用例1,登陆后执行添加购物车功能操作‘)
def test_search():
print(‘用例2,不登陆查询功能操作‘)
def test_pay(login):
print(‘用例3,登陆后执行支付功能操作
pytest_fixture.py::test_cart
输入用户名密码登陆! configtest
PASSED [ 33%]用例1,登陆后执行添加购物车功能操作
pytest_fixture.py::test_search PASSED [ 66%]用例2,不登陆查询功能操作
pytest_fixture.py::test_pay PASSED [100%]用例3,登陆后执行支付功能操作
退出登陆
pytest_fixture--scope="session"
标签:scope 添加 import imp -- sse pre sea search
原文地址:https://www.cnblogs.com/QaStudy/p/11565205.html