HTMLTestRunner 异常输出中文乱码

Webdriver for python使用HTMLTestRunner 输出测试报告时,标题和描述有中文都不会显示乱码。只有在用例失败或异常时,输出的错误信息中中文就显示乱码,如下
HTMLTestRunner 异常输出中文乱码_第1张图片
解决方案
找到HTMLTestRunner.py源码
定位到如下位置,o.decode(‘latin-1’)编码“latin-1”修改为“utf-8”

if isinstance(o,str):
    # TODO: some problem with 'string_escape': it escape \n and mess up formating
    # uo = unicode(o.encode('string_escape'))
    uo = o.decode('utf-8')
else:
    uo = o
if isinstance(e,str):
    # TODO: some problem with 'string_escape': it escape \n and mess up formating
    # ue = unicode(e.encode('string_escape'))
    ue = e.decode('utf-8')
else:
    ue = e

保存后,重新执行脚本,就能正常显示了
HTMLTestRunner 异常输出中文乱码_第2张图片

你可能感兴趣的:(python,异常,webdriver)