编程语言
首页 > 编程语言> > Python pytest-fixture

Python pytest-fixture

作者:互联网

fixture参数列表

@pytest.fixture(scope="function", params=None, autouse=False, ids=None, name=None)
def test():
    print("fixture初始化的参数列表")

 

参数列表

 

测试用例如何调用fixture

@pytest.fixture
def login():
    print("输入账号,密码先登录")

def test_s1(login):
    print("用例 1:登录之后其它动作 111")

 

@pytest.mark.usefixtures("login2", "login")
def test_s11():
    print("用例 11:登录之后其它动作 111")

 

@pytest.fixture(autouse=True)
def login3():
    print("====auto===")

 

说明:

标签:name,Python,fixture,pytest,测试用例,print,def
来源: https://www.cnblogs.com/QingshanY/p/16328792.html