pytest_fixture--scope="session"
Posted qastudy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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,登陆后执行支付功能操作
退出登陆
以上是关于pytest_fixture--scope="session"的主要内容,如果未能解决你的问题,请参考以下文章