I'm trying to define a 2-dimensional list in a resources *** Variables
*** section. After that I want to iterate over this list in a test
case. I'm can't figure out how to accomplish this. What I've tried:
In a separate resource file I'd like to create a two dimensional
array:
*** Variables ***
@{app1} Application One None 00897-0000 True False
@{app2} Application Two None 06455-0000 True False
@{applications} @{app1} @{app2}
In a test file I'm looping over the 2-dimensional array:
A simple test
:FOR ${app} IN @{applications}
\ Log ApplicationName: @{app}[0]