标签:nbsp 打印 for http 装饰器 fun 需要 cio png
将用装饰器传参的参数值打印到报告中
步骤1:
ids是一个list,且里面每一个元素都要是str
ids = [‘{}‘.format(data) for data in testData] #testData 为参数列表
@pytest.mark.parametrize("datajson",testData,ids=ids) 在需要装饰的class或funcion前面加上带ids的装饰器
效果如:
标签:nbsp 打印 for http 装饰器 fun 需要 cio png
原文地址:https://www.cnblogs.com/jodie2019/p/13213348.html