In one of my testcases I need to define a dictionary, where the keys are string and the values are arrays of strings. How can I do so in Robot Framework?
My first try using a construct as shown below, will not work.
*** Variables ***
&{Dictionary} A=StringA1 StringA2
... B=StringB1 StringB2
Another idea might be to use Evaluate and pass the python expression for a dictionary, but is this the only way how it can done?
*** Variables ***
&{Dictionary} Evaluate { "A" : ["StringA1", "StringA2"], "B": ["StringB1","StringB2"]}