Hi all,
I would like to understand how to read and use the RF documentation. I have to following example o not understanding the doc’s.
In the docs’s of Robotframework I read at:
https://robotframework.org/robotframework/2.1.2/libraries/Collections.html
That there is a keyword
Dictionary Should Contain Key
Now I want to use that, so I do:
*** Variables ***
&{dict} key=value
*** Test Cases ***
my test case
Dictionary Should Contain Key &{dict} key
Then an error appears:
No keyword with name 'Dictionary Should Contain Key' found.
I’m not interested in an other way of check if a key exists. I’m interested in understanding how to read the doc’s. Thus when I read there is a keyword ‘Dictionary Should Contain Key’. How does that exactly correlate/translate to code?