I am writing following test case:
COMMAND TARGET VALUE
--------------------------------------------------------------
storeXpathCount *someXpath* totalRows
store 3 i
while ${i}<=${totalRows}
storeText *someXpath* MyVersion
storeEval storedVars['MyVersion']=='103' result
gotoIf ${result}==false lebelForIf
label labelForIf
storeEval {i}+1 i
endWhile
I am getting error at the line where i have storeEval storedVars[..] The error is "[error] Threw an exception: illegal character".
Basically i want to search a version ( i.e. 103) from column which has "totalrows" thus iterating using i, wherever the version matches I want to take some action.
If the above snippet is not proper is there any other way to write this code in Selenium IDE?