Python2.7 在使用BSTestRunner.py时报错TypeError: unicode argument expected, got 'str'

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python2.7 在使用BSTestRunner.py时报错TypeError: unicode argument expected, got 'str'相关的知识,希望对你有一定的参考价值。

python3往这个库中加入了一些新的内容,使得该库在Python2.7中报错。

解决方法是将导入语句

from io import StringIO as StringIO

更换为:

from io import BytesIO as StringIO

 

 

以上是关于Python2.7 在使用BSTestRunner.py时报错TypeError: unicode argument expected, got 'str'的主要内容,如果未能解决你的问题,请参考以下文章

selenium + python之BSTestRunner生成测试报告时报错:NameError: name 'unicode' is not defined

selenium + python之BSTestRunner生成测试报告时报错:NameError: name 'unicode' is not defined

unittest 报告——HTMLTestRunner/BSTestRunner+代码覆盖率

python+Appium自动化:BSTestRunner执行测试用例,生成测试报告

非root用户在centos上的python2.7

amqp模块在python2.7.6版本上报错的问题