I'm very new to Robot Framework. I'm trying to get the parameters like image name or id from the Openstack rest API.
Following below is my RF code.
*** Settings ***
Library OperatingSystem
Library Collections
Library RequestsLibrary
Library Selenium2Library
*** Test Cases ***
Get Requests
${resp}= Get Request openstackNet /v2.0
Should Be Equal As Strings ${resp.status_code} 200 #
# ${token}= Collections.Get From Dictionary ${resp.json()} /images/6bb323ef-bf47-4d58-a497-ccb11a8a39dc
${token}= Get Json Value ${resp.json()} /images/{6bb323ef-bf47-4d58-a497-ccb11a8a39dc}
Log ${resp}
I would like to find the details of the image id "6bb323ef-bf47-4d58-a497-ccb11a8a39dc" . But this code "${token}= Get Json Value ${resp.json()} /images/{6bb323ef-bf47-4d58-a497-ccb11a8a39dc}" does not work.
Error massage is "No keyword with name 'Get Json Value' found."
Please help me to find the parameter of the image by using the rest API.