I am new to Robot FW and I am in the training phase. To try to access external libraries, I made a very simple function and saved the file tryingLibrary.py. Content:
def myAdding(x, y):
z = x + y
return z
Then i will worte the next RF test
Documentation Suite description
Library tryingLibrary.py
${x}
TestTest
${x}= myAdding 30 26
However, when I check the log file, I find ${x} = 3026. I mean, I expect, of course, 56not3026
So where could the problem be?
source
share