import pytest """pytest.fixture 参数autouse=True 时,默认全部函数调用该方法,不需要再传入函数名""" @pytest.fixture(autouse=True) def open_browser(): print("打开首页") def test_01(): print("执行01") def test_02(): print("执行02") def test_03(): print("执行03")
pytest学习实践-day25: fixture学习06:全部函数调用,不需要传入标记的函数名
于 2024-04-11 09:02:28 首次发布
本文介绍了pytest中fixture参数autouse=True的作用,当这个选项设为True时,它会自动应用于所有测试函数,无需在每个测试函数中显式引用,主要展示了如何使用open_browserfixture在测试前打开首页。
摘要由CSDN通过智能技术生成