我嵌入了这样的词典:
${json}= Create Dictionary ......(value pairs)
${request}= Create Dictionary body=${json}
${return}= Create Dictionary request=${request}
我可以访问原始键值对,例如:
${return.request.body.type}
一切正常。但是,我收到了这个错误:
Resolving variable '${detail_call.response.json.type}' failed: AttributeError: 'dict' object has no attribute 'type'
当我尝试创建初始json对象时,反之亦然 - 通过从字符串解码它:
${decoded_json}= Run Keyword And Ignore Error json.JSONDecoder.Decode ${response.content}
${response.json}= Set Variable If '${decode_status}' == 'PASS' ${decoded_json} ${null}
${detail_call}= Create Dictionary response=${response}
并通过点表示法访问它:
${detail_call.response.json.type}
当我记录字符串时,我可以清楚地看到有键#34;键入"分配值。当我用括号访问它时它甚至可以工作:
${detail_call.response.json['type']}
您是否知道,如果使用JSONDecoder创建字典,为什么我不能使用点表示法?
感谢。
答案 0 :(得分:6)
正如millimoose所建议的,JSONDecoder返回的python字典与robotframework自己的字典不同。我还没有找到将python dict转换为机器人dict的官方方法,所以我实现了自己的:
Convert Python Dictionary
[Arguments] ${python_dict}
[Documentation] Converts Python dictionary to Robot dictionary.
@{keys}= Get Dictionary Keys ${python_dict}
${robot_dict}= Create Dictionary
:FOR ${key} IN @{keys}
\ Set To Dictionary ${robot_dict} ${key}=${python_dict['${key}']}
[Return] ${robot_dict}
如果您需要将机器人dict转换为python dict,可以使用Collections library(http://robotframework.org/robotframework/latest/libraries/Collections.html#Convert%20To%20Dictionary)中的Convert To Dictionary关键字。