1

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

2
  • What are you trying to do here? Commented Sep 25, 2012 at 21:58
  • Thanks for giving a thought.I was trying to read a CSV and create separate lists for each element of first line.Then add the subsequententries(from line 2 to lastline) from CSV to the created lists(from first line of CSV).I got it working after some research.Thanks again...Malay Commented Sep 26, 2012 at 13:17

1 Answer 1

2

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!

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.