My problem is:
I am trying something like this
${${variable}} Create List
${variable} –this will be passed as an argument.
I get the following error when I do it:-
No keyword with name '${${variable}}' found
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To make a list use @{list}, but not ${variable}. To parse ${variable} to list, use something like this: @{list} ${first_variable} {seconn_variable}.
More info you can get here:
http://robotframework.googlecode.com/hg/doc/userguide/RobotFrameworkUserGuide.html?r=2.7.4#list-variables
Hope this would help you!