Hello, how are you? I am trying my first robots, in this case I need to obtain information from a JSON that is published in an webapi and then complete a web form in another url.
I am starting with the log in and creation of the dictionaries but I have problems with a variable.
*** 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
Caso_Test_1 | FAIL |
Variable ‘${json1}’ not found.
what is the reason why my variable is not working?
after capture the data of json I need to complete a webform that that I already have in another robot
Thanks!!