Age | Commit message (Expand) | Author | Files | Lines |
---|---|---|---|---|
2#Robot functions that will be shared also with other tests
*** Keywords ***
json_from_file
#Robot function to extract the json object from a file
[Arguments] ${file_path}
${json_file}= Get file ${file_path}
${json_object}= Evaluate json.loads('''${json_file}''') json
[ |