Hello!
I am very new to robotframework and what I am trying to do is create a new robot with robocorp that will get the values from a json web query and then be able to insert them into a web form in different fields, I have newby errors, first with the variables,
I understand that the task I want to do must be one of the most basic, someone could share a robot that can serve as an example
*** settings ***
Library Collections
Library requests
Library Rest
Library RPA.Browser
*** Variables ***
${BASE_URL} http://10.75.160.27:81
${json1}= Set Variable ${{result.json()}
*** test cases ***
Caso_Test_1
#${result} = get ${hi1}
${result} = get ${BASE_URL}
Should Be Equal ${result.status_code} ${200}
# ${json} = Set Variable ${result.json()}
${framework} = Get From Dictionary ${json1} framework
Should Be Equal ${framework} robot-framework
${api} = Get From Dictionary ${json} api
Should Be Equal ${api} rest
Caso_Test_1 | FAIL | Variable '${json1}' not found.