html报告中文显示乱码

用python + selenium,pytest框架,生成的html报告中,中文显示乱码,如下图:

html报告中文显示乱码

 

找到pytest-html 插件下的plugin.py(路径:/lib/python3.9/site-packages/pytest_html/plugin.py)做如下修改:

将  self.test_id = report.nodeid.encode("utf-8").decode("unicode_escape")

改为:self.test_id = report.nodeid

html报告中文显示乱码

 

 

 中文显示乱码的问题就解决了。

html报告中文显示乱码

上一篇:Android仿微信朋友圈图片查看器


下一篇:springboot中使用easypoi导出excel表格