单独在文件中打开allure生成的index.html报告时却显示为loading

问题描述】:单独在文件中打开allure生成的index.html报告时显示为loading,如下图:

单独在文件中打开allure生成的index.html报告时却显示为loading_第1张图片

问题定位】:其实在allure-report下index.html文件是不能直接打开的,出现页面都是loading的情况,这是因为直接allure报告用浏览器是打不开的,需要用allure命令渲染之后打开才能展示效果。

解决办法】:

方法1】:终端命令运行: allure open 或 allure serve

allure使用了两种方式来渲染页面。分别是 allure open 和 allure serve。
allure open:用于在本地渲染和查看结果;
allure serve:用于在本地渲染后对外展示结果。
这里我们使用allure open。运行命令:allure open allure-report目录(注:allure-report目录为index.html文件的所在目录位置,不需要带index.html)
如:index.html文件在xxx/result/report文件下,终端运行如下:

E:\lilishop_api_test>allure open ./result/report

单独在文件中打开allure生成的index.html报告时却显示为loading_第2张图片

参考链接:https://cloud.tencent.com/developer/article/2109821

方法2】:编写.bat脚本,双击直接打开(该脚本要和index.html放在同一个目录下)

cd E:\lilishop_api_test
allure open result/report/

单独在文件中打开allure生成的index.html报告时却显示为loading_第3张图片

:这里也可以编写默认用谷歌浏览器打开的bat脚本,具体可以参考以下链接:
https://blog.csdn.net/FloraCHY/article/details/130831890

你可能感兴趣的:(python,pytest)