测试总结-robotframework之UI自动化

在使用rf过程中,输入中文,也同样会遇到编码问题,可以直接在rf用例的text edit中添加utf-8编码方式。

由于Python编码不一致的问题,可以给Python设置一个系统默认的编码方式

python2.x默认的编码是ascii,默认的defaultcoding:ascii是许多错误的原因,当程序中出现非ascii编码时,python的处理常常会报这样的错UnicodeDecodeError: 'ascii' codec can't decode byte 0x?? in position 1: ordinal not in range(128),python没办法处理非ascii编码的,此时需要自己设置将python的默认编码,一般设置为utf8的编码格式。如果你在python中进行编码和解码的时候,不指定编码方式,那么python就会使用defaultencoding。

查询系统默认编码可以在解释器中输入以下命令:

Python代码 

[if !supportLists]1. [endif]>>>sys.getdefaultencoding()  

设置默认编码时使用:

Python代码 

[if !supportLists]1. [endif]>>>sys.setdefaultencoding('utf8')  

 可能会报AttributeError: 'module' object has no attribute 'setdefaultencoding'的错误,执行reload(sys),在执行以上命令就可以顺利通过。

此时在执行sys.getdefaultencoding()就会发现编码已经被设置为utf8的了,但是在解释器里修改的编码只能保证当次有效,在重启解释器后,会发现,编码又被重置为默认的ascii了,那么有没有办法一次性修改程序或系统的默认编码呢。


有2种方法设置python的默认编码:

一个解决的方案在程序中加入以下代码:

Python代码 

[if !supportLists]1. [endif]import sys  

[if !supportLists]2. [endif]reload(sys)  

[if !supportLists]3. [endif]sys.setdefaultencoding('utf8')   

 另一个方案是在python的Lib\site-packages文件夹下新建一个sitecustomize.py,内容为:

Python代码 

[if !supportLists]1. [endif]# encoding=utf8  

[if !supportLists]2. [endif]import sys  

[if !supportLists]3. [endif]reload(sys)  

[if !supportLists]4. [endif]sys.setdefaultencoding('utf8')   

[python] view plain copy

[if !supportLists]1. [endif]s.encode("utf-8") 等价于 s.decode(defaultencoding).encode("utf-8")  

此时重启python解释器,执行sys.getdefaultencoding(),发现编码已经被设置为utf8的了,多次重启之后,效果相同,这是因为系统在python启动的时候,自行调用该文件,设置系统的默认编码,而不需要每次都手动的加上解决代码,属于一劳永逸的解决方法。


另外有一种解决方案是在程序中所有涉及到编码的地方,强制编码为utf8,即添加代码encode("utf8"),这种方法并不推荐使用,因为一旦少写一个地方,将会导致大量的错误报告。

文件头声明编码的作用。

顶部的:# -*- coding: utf-8 -*-目前看来有三个作用。

如果代码中有中文注释,就需要此声明比较高级的编辑器(比如我的emacs),会根据头部声明,将此作为代码文件的格式。程序会通过头部声明,解码初始化 u”人生苦短”,这样的unicode对象,(所以头部声明和代码的存储格式要一致)

你可能感兴趣的:(测试总结-robotframework之UI自动化)