how can I report steps in my java code using TestProject Java SDK? Can anyone share an example?
Asked
Active
Viewed 49 times
1 Answers
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");

Dor Ben zvi
- 68
- 5