-3

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

Kfiryo
  • 32
  • 2

1 Answers1

0

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");