I know that I can access one element from a dictionary object with this format $ {dict ['KEY']}. Like this:
| | Log | ${dict['KEY']} |
And I can set the plain old scalar as follows:
| | ${scalar}= | RFKeyword | "Yowp"
But if I try to establish a dictionary element like this
| | ${dict['KEY']}= | RFKeyword | "Yowp"
I get "RFKeyword", "Yowp" in a variable, and not the result of what RFKeyword generates when processing "Yowp", as I do with this
| | ${scalar}= | RFKeyword | "Yowp"
Help please
source
share