Hi,
I can import my python class like this… and I can run functions…
but I would like to be able to access a variable inside the class also
Inside class I have a variable error_flag but it can’t find it…
´
*** Test Cases ***
My first Robot testcase
[Documentation]
...
... Import python class in testcase and call functions...
... But how to access variable ? If I print RC.error_flag it gives error that
...
import library MyPythonClass WITH NAME RC
RC.parse_dev_tree
Log to console ${RC.error_flag}
´
error is this
Resolving variable ‘{RC.error_flag}' failed: Variable '{RC}’ not found.
the error_flag has property and setter docorators… in the class…
What I am I doing wrong…