I have a keyword in robot framework; it takes an argument, performs some process on it and returns it after all:
My Keyword Name
[Arguments] ${arg}
# Some process on ${arg}
[Return] ${arg}
So it would be the usage:
${x} = My Keyword Name ${x}
Which implies that I gave the old value of ${x}
to the keyword and it returned me the new value of it.
I want to make a call by reference on My Keyword Name
, so I don't need to use an assignment for setting new value for ${x}
. I have read the BuiltIn and UserGuide,
but there was no line about this subject. Can anyone help me on this?