How to use fully functional JsonPath in RobotFramework?
问题 Could you please recommend how to use JsonPath in the Robot Framework? It should supports multi-level query as following: $.items[?(@.status.name="closed")].name I'm seeking the way to make following work: *** Variables *** ${json} {"items":[{"name":"item1","status":{"id":1,"name":"opened"}},{"name":"item2","status":{"id":2,"name":"closed"}}]} ${json_path} $.items[?(@.status.name="closed")].name *** Test Cases *** Get closed item ${names}= Get Json Items ${json} ${json_path} Should be equal $