I have a function in python I want to call and check if it is true or false. This would work fine coming back to robot and using 'should be true' the only problem is the function needs to take parameters.
Ex.
should be true | Check Value | nTimes | nSeconds | expectedValue
'Should be true' only takes 1-2 arguments and I am giving it a keyword and 3 arguments. Is there syntax like parentheses to overcome this or do I need to use something other than 'should be true' from the robot library?
My solution now has been to return the function to a variable and then test the variable with 'should be true' but I really want this to be simpler than that and condensed to one line.