I'm using robotframewok 4.0
I have defined a simple list variable:
*** Variables ***
${BROWSERSIZE} 1400 900
Using this variable in a test case:
Log To Console Size: ${BROWSERSIZE}, Width:${BROWSERSIZE}[0] Height:${BROWSERSIZE}[1]
the output is this:
Size: 1400 900, Width:1 Height:4
Shouldn't (according to the manual) the indexes [0] and [1] refer to the two values? Instead it seems they refer to the character...
What am I doing wrong?