Report method
Relevant for: API testing only
Description
Reports a custom attribute in the Captured Data pane of the run results.
Class
Action
Syntax
this.<activity>.Report("report attribute string", "<attribute value>");
Parameters
| Parameter | Description |
|---|---|
| Report attribute string | A string for the custom field to enter into the run results. |
| Attribute value | The value for the attribute to report. |
Return Type
A custom field in the run results.
Example
var ActivityArguments = args.Activity.StepId.ToString();
this.ConcatenateStringsActivity4.Report("Overall report", ActivityArguments);

