还未发布过话题
  • @pytest.fixture(scope='function', autouse=True, name='ready')
    def init_game():
    # 测试用例环境初始化
    start_app()
    init_driver()
    yield
    # 测试用例环境重置
    driver.quit()
    stop_app()
    当然以上方法都需要自己封装 伪代码 看看就好