I've created a very simple custom library using the Robot Framework that is working correctly and I'd like to pass data between the robot test and the functions from the custom library
Is it possible to send a value from the robot framework test files test to a custom python function?
currently I have the following:
Keyword
Get Name and Send Email
${n} get text id=name
run my code
and then:
Custom Library
def run_my_code(self):
name = "insert name from robot var"
I want to use the value stored in ${n} as the name variable name inside the function
any help much appreciated thanks James