pytest_fixture--scope="session"
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,登陆后执行支付功能操作
退出登陆
posted on 2019-09-21 22:37 barton123 阅读(1289) 评论(0) 编辑 收藏 举报