测试积点老人 发表于 2022-12-9 10:13:38

allure.dynamic.title 动态生成测试用例问题

问题遇到的现象和发生背景
allure.dynamic.title 动态生成测试用例,写在for 循环里为什么只生成了最后一条title
@pytest.mark.parametrize('json', info1)
def test_run(json):
    # 动态展示模块名
    allure.dynamic.story(json['info']['模块名'])
    print(json['info']['模块名'])
    # print(json['steps'])
    for step in json['steps']:
      # print(step)
      step_name = step['步骤名']
      step_keywords = step['关键字']
      step_value = step['参数']
      # 动态展示步骤名
      allure.dynamic.title(step_name)
      # allure.step(step_name)
    pass


kallinr 发表于 2022-12-12 11:25:01

不清楚

郭小贱 发表于 2022-12-12 14:35:34

没遇到过哎。
页: [1]
查看完整版本: allure.dynamic.title 动态生成测试用例问题