In Robot Framework user guide there is a section that describes how to pass variable files and also some possible variables if needed.
Example:
pybot --variablefile taking_arguments.py:arg1:arg2
My question is can i use these possible variables arg1 and arg2 in the taking_arguments.py file afterwards and if i can then how?
Right now i have this:
pybot --variablefile taking_arguments.py:arg1:arg2
taking_arguments.py contents:
IP_PREFIX = arg1
But that results in
NameError: name 'arg1' is not defined