Report steps using TestProject Java SDK

69 Views Asked by At

how can I report steps in my java code using TestProject Java SDK? Can anyone share an example?

1

There are 1 best solutions below

0
On BEST ANSWER

You have to use the helper in order to get the reporter.

ActionReporter reporter = helper.getReporter();

Now that you have the reporter you can use it to report steps, for example:

 reporter.result("Step passed");