StepInfo class
When a test terminates, the Close method returns an object with methods/properties defined by the TestResults class. Within the TestResults, there is an array of objects which have the properties defined by the class StepInfo. Each element of this array describes information for one step in the test.The properties in this class are used to retrieve information for a given step in the test results.
You can access the array of objects with the step information using the StepsInfo property.
Using statement
using Applitools;
ApiUrls property
Syntax
ApiUrls value = stepinfo.ApiUrls;
Type: ApiUrls
See ApiUrls for a detailed description of this object.
AppUrls property
Syntax
AppUrls value = stepinfo.AppUrls;
Type: AppUrls
See AppUrls for a detailed description of this object.
HasBaselineImage property
Syntax
bool value = stepinfo.HasBaselineImage;
Type: bool
HasCheckpointImage property
Syntax
bool value = stepinfo.HasCheckpointImage;
Type: bool
IsDifferent property
Syntax
bool value = stepinfo.IsDifferent;
Type: bool
Returns true if a corresponding baseline image exists and the checkpoint image does not match that baseline image, Returns false if the checkpoint image matched the baseline image or if its a new checkpoint image (there is no baseline image yet).
Name property
Syntax
string value = stepinfo.Name;
Type: string