51Testing软件测试论坛

标题: python中运行HTMLTestRunner,print不生效 [打印本页]

作者: 测试积点老人    时间: 2022-9-5 13:19
标题: python中运行HTMLTestRunner,print不生效
目前版本python3.7 运行HTMLTestRunner时,print怎么都不生效,网上找的办法
将HTMLTestRunner.py 中的if isinstance(o,str): 方法给注释掉,改成uo=o 也试过了,还是不行,各位大佬怎么弄啊
  1. if isinstance(o,str):
  2. # TODO: some problem with 'string_escape': it escape \n and mess up formating
  3. # uo = unicode(o.encode('string_escape'))
  4. uo = o
  5. else:
  6. uo=o
复制代码



作者: qqq911    时间: 2022-9-6 10:34
往上一次下断点调试
作者: 郭小贱    时间: 2022-9-6 11:30
修改HTMLTestRunner的源码,找到
  if isinstance(o,str):
    ******
  else:
    ******
注释或者删掉,改成:
  uo = o
作者: jingzizx    时间: 2022-9-6 17:32
有没有新的方法更新?




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2