码迷,mamicode.com
首页 > 其他好文 > 详细

robotframework 列表,字典,元组输出中文乱码解决方案

时间:2019-05-13 12:38:55      阅读:440      评论:0      收藏:0      [点我收藏+]

标签:文件   pytho   odi   pack   自动化脚本   lib   instance   otf   for   

在用RF写接口自动化脚本过程中,经常会输出列表或者字典,但是中文会显示乱码,在网上找到的解决办法是:

在python的Lib\site-packages\robot\utils下有个unic.py文件,打开,先导入json

再修改下面的代码,再重启RF就好了

if PY2:

def unic(item):
if isinstance(item, unicode):
return item
if isinstance(item, (bytes, bytearray)):
try:
return item.decode(‘ASCII‘)
except UnicodeError:
return u‘‘.join(chr(b) if b < 128 else ‘\\x%x‘ % b
for b in bytearray(item))
if isinstance(item, (list, dict, tuple)):
try:
item = json.dumps(item, ensure_ascii=False, encoding=‘utf-8‘)
except UnicodeDecodeError:
try:
item = json.dumps(item, ensure_ascii=False, encoding=‘gbk‘)
except:
pass
except:
pass
try:
try:
return unicode(item)
except UnicodeError:
return unic(str(item))
except:
return _unrepresentable_object(item)

 

本来想截图,但是上传不了

robotframework 列表,字典,元组输出中文乱码解决方案

标签:文件   pytho   odi   pack   自动化脚本   lib   instance   otf   for   

原文地址:https://www.cnblogs.com/yangtou45du/p/10855746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!