zoukankan      html  css  js  c++  java
  • robotframework运行时后台报错UnicodeDecodeError

    win10环境下报错:

    Traceback (most recent call last):

      File "C:Python27libsite-packages obotidecontrib estrunner estrunnerplugin.py", line 370, in OnTimer

        self._test_runner.get_output_and_errors(self.get_current_profile())

      File "C:Python27libsite-packages obotidecontrib estrunner estrunner.py", line 250, in get_output_and_errors

        stdout, stderr, returncode = self._process.get_output(),

      File "C:Python27libsite-packages obotidecontrib estrunner estrunner.py", line 305, in get_output

        return self._output_stream.pop()

      File "C:Python27libsite-packages obotidecontrib estrunner estrunner.py", line 400, in pop

        return result.decode('UTF-8')

      File "C:Python27libencodingsutf_8.py", line 16, in decode

        return codecs.utf_8_decode(input, errors, True)

    UnicodeDecodeError: 'utf8' codec can't decode byte 0xb2 in position 5: invalid start byte

    Traceback (most recent call last):

      File "C:Python27libsite-packages obotidecontrib estrunner estrunnerplugin.py", line 370, in OnTimer

        self._test_runner.get_output_and_errors(self.get_current_profile())

      File "C:Python27libsite-packages obotidecontrib estrunner estrunner.py", line 250, in get_output_and_errors

        stdout, stderr, returncode = self._process.get_output(),

      File "C:Python27libsite-packages obotidecontrib estrunner estrunner.py", line 305, in get_output

        return self._output_stream.pop()

      File "C:Python27libsite-packages obotidecontrib estrunner estrunner.py", line 400, in pop

        return result.decode('UTF-8')

      File "C:Python27libencodingsutf_8.py", line 16, in decode

        return codecs.utf_8_decode(input, errors, True)

    UnicodeDecodeError: 'utf8' codec can't decode byte 0xb2 in position 279: invalid start byte

    解决方案:在line400行报错utf8编码0xb2解码:无效

    我们每次在修改了testrunner.py文件后一定要记得删掉testrunner.pyc文件,然后重新启动ride,不然等于白改~!

        def pop(self):

            result = ""

            for _ in xrange(self._queue.qsize()):

                try:

                    result += self._queue.get_nowait()

                except Empty:

                    pass

            return result.decode('UTF-8')

    把UTF-8改成GBK

    然后解决问题!

  • 相关阅读:
    RabbitMQ在windows环境下的安装、集群配置
    c# c++通信--命名管道通信
    CreateWindow创建无边框 可拉伸窗体
    jetbrains goland 跳到上一个光标处
    centos 7 install virtualbox
    CentOS 7如何将.deb文件转换.rpm
    golang解析json报错:invalid character 'x00' after top-level value
    linux 查看内存信息,及其他硬件信息 dmidecode命令
    kali 源设置sources.list
    ubuntu linux 1604 编译安装tesseract-ocr 4.0
  • 原文地址:https://www.cnblogs.com/lxs1314/p/8965995.html
Copyright © 2011-2022 走看看