Report method

Relevant for: API testing only

Description

Reports a custom attribute in the Captured Data pane of the run results.

Back to top

Class

Action

Back to top

Syntax

this.<activity>.Report("report attribute string", "<attribute value>");

Back to top

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.

Back to top

Return Type

A custom field in the run results.

Back to top

Example

var ActivityArguments = args.Activity.StepId.ToString();
this.ConcatenateStringsActivity4.Report("Overall report", ActivityArguments);

Back to top