I need to pass a list from robot framework to python but I am unable to do that .
Kindly help in resolving the issue .
I have tried below mention robot code but it doesn't works :
${list1}= create list a b c
${list2}= create list d e f
cleanup1 ${list1} ${list2}
python code :
def cleanup1(list1,list2):
print (list1)
print (list2)
Please help why is this failing ?
Expected output was to print both the list .
However I am getting error message :
No keyword with name ${list1}= create list found.
${list1}= create listfound you need to add at least one more space after the=sign. Same for the second list.