浏览器打开allure 生成的index.html 报告显示Loading

随笔记录

目录

1. 问题描述

2. 定位原因

3. 解决方法

3.1 渲染后加载成功

3.2 Pycharm中 allure报告选择浏览器打开


1. 问题描述

问题描述:

本地pytest 自动化项目路径下,打开allure 生成的html 报告 index.html后,显示loading.

如下图所示:

浏览器打开allure 生成的index.html 报告显示Loading_第1张图片

2. 定位原因

定位原因:
在allure-report下index.html文件是不能直接打开的,出现页面都是loading的情况,
是因为直接allure报告用浏览器是打不开的,

需要用allure命令渲染之后打开才能展示效果

3. 解决方法

3.1 渲染后加载成功
# 指定渲染命令
# allure open 

# Pycharm Terminal 执行一下命令:

PS D:\Backup\自动化脚本\Riskcop\Reports> pwd  

Path
----
D:\Backup\自动化脚本\Riskcop\Reports            # allure 生成html 报告 存放路径


PS D:\Backup\自动化脚本\Riskcop\Reports>
PS D:\Backup\自动化脚本\Riskcop\Reports> ls 


    目录: D:\Backup\自动化脚本\Riskcop\Reports


Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d-----          2024/2/4     16:26                html
d-----          2024/2/4     16:26                json
-a----         2024/1/17     17:39            123 __init__.py


PS D:\Backup\自动化脚本\Riskcop\Reports> 
PS D:\Backup\自动化脚本\Riskcop\Reports> allure open .\html\
Starting web server...
2024-02-04 16:44:56.887:INFO::main: Logging initialized @250ms to org.eclipse.jetty.util.log.StdErrLog
Server started at . Press  to exit

浏览器打开allure 生成的index.html 报告显示Loading_第2张图片

3.2 Pycharm中 allure报告选择浏览器打开
Pycharm 中选中allure生成的 html 报告,通过浏览器打开即可正常加载

Pycharm -> 选择allure生成的报告:index.html ->'Open in ' -> 'Browser' -> 选择浏览器

浏览器打开allure 生成的index.html 报告显示Loading_第3张图片

浏览器打开allure 生成的index.html 报告显示Loading_第4张图片 

 到此问题解决,allure 生成的html 报告正常加载打开

你可能感兴趣的:(html,allure,Pytest)