解决python3下robot框架ride编辑器运行打印中文乱码

5 篇文章 0 订阅
5 篇文章 0 订阅

现象:
在这里插入图片描述
解决办法和提示优化:
Lib\site- packages\robotide\contrib\testr unner\testrunnerplugin.py替换中文提示修改:

def _ask_user_to_save_before_running(self):
    ret = wx.MessageBox(u"修改没有保存, 要保存所有修改并执行测试吗?",
                        u"修改未保存提醒",
                        wx.ICON_QUESTION | wx.YES_NO)
    return ret == wx.YES
def ask_user_to_run_anyway(self):
    ret = wx.MessageBox(u'没有选择测试用例.'
                        u'确定继续吗?',
                        u'未选择用例',
                        wx.ICON_QUESTION | wx.YES_NO)
    return ret == wx.YES

Lib\site- packages\robot\utils下的unic.py修改内容如下:

if PY2:
    import json

    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='gbk')
            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)

else:

    def _unic(item):
        if isinstance(item, str):
            return item
        if isinstance(item, (bytes, bytearray)):
            try:
                return item.decode('ASCII')
            except UnicodeError:
                return ''.join(chr(b) if b < 128 else '\\x%x' % b
                               for b in item)
        try:
            return str(item)
        except:
            return _unrepresentable_object(item)


def prepr(item, width=80):
    return unic(PrettyRepr(width=width).pformat(item))

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值