12-27-2018 06:16 AM
I am using Python Steps (via the special Step Types, not via Call Executable) with parameters input and Return value.That works great, in that way I can use several calls on created instances in one module at diffrenet moments during the testcycle.
Next to that those parameters and Return values I would also like to catch the standard output (print statements) for the report.
Does anyone know how to do that?
Solved! Go to Solution.
12-27-2018 09:14 AM
Hey,
The Python step types do not currently support standard out. If there is something that you want to pass to the standard out, we recommend that you pass the information to a variable and pass that back into TestStand.
Thanks,
Roxy
12-27-2018 10:00 AM
Did not think of that option; If I understand it well it you can get values of a variable inside a class to TestStand without using the 'return' statement for it (as long as the variable still exists in the class). Will try it!