BeautifulReport报告问题
Posted yanpan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BeautifulReport报告问题相关的知识,希望对你有一定的参考价值。
newFields = []
for i in range(len(self.fields["testResult"])):
newFields.append(self.fields["testResult"][i]["log"][:-1])
finalFields = []
for num in range(len(newFields)):
if num == 0:
finalFields.append(newFields[num])
else:
length = len(newFields[num]) - len(newFields[num - 1])
d = copy.deepcopy(newFields[num])
new = []
for m in range(length):
get = d.pop()
new.insert(0, get)
finalFields.append(new)
for number in range(len(finalFields)):
self.fields["testResult"][number]["log"] = finalFields[number] + [""]
以上是关于BeautifulReport报告问题的主要内容,如果未能解决你的问题,请参考以下文章
selenium+python+unittest多线程生成报告(BeautifulReport)
请问在做自动化测试的时候用beautifulreport生成的报告值为空,有知道怎么解决的吗?