运行报错 FAIL : UnicodeDecodeError: 'ascii' codec can't decode byte 0xe4 in position
解决方法:
在python安装目录的\Lib\site-packages目录下新建文件sitecustomize.py,文件中编写以下代码
#coding=utf8
import sys
reload(sys)
sys.setdefaultencoding('utf8')
之前按这种方法处理后现在又出现这种错误
https://blog.csdn.net/m0_37615390/article/details/80798105
https://github.com/robotframework/RIDE/issues/1334