robotframework中怎么获取元组类型的数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了robotframework中怎么获取元组类型的数据相关的知识,希望对你有一定的参考价值。

参考技术A robotframework中获取元组类型的数据
1、进行打开一个robotframework的软件的界面当中。
2、然后,进行点击ride的菜单中的tools的菜单之后,弹出了下拉输入产量即可。

robotframework 列表,字典,元组输出中文乱码解决方案

在用RF写接口自动化脚本过程中,经常会输出列表或者字典,但是中文会显示乱码,在网上找到的解决办法是:

在python的Lib\site-packages\robot\utils下有个unic.py文件,打开,先导入json

再修改下面的代码,再重启RF就好了

if PY2:

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=‘utf-8‘)
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)

 

本来想截图,但是上传不了

以上是关于robotframework中怎么获取元组类型的数据的主要内容,如果未能解决你的问题,请参考以下文章

robot framework appiumlibrary 怎么获取窗口大小

怎么样导入RobotFramework 自定义关键字

怎么样导入RobotFramework 自定义关键字

robotframework中,如何循环输出递增变量。 $menu_count set variable 10

RobotFramework手把手教学:提交数据失败了可怎么办?

Python怎么将列表中的数加起来