The information in this topic may be out of date. The current SDK reference guide has moved here.

StepInfo class

Platform: ImagesLanguage: C# SDK:
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;
	

Properties

ApiUrlsType:ApiUrls
Use the object returned by this method to retrieve URLs for the baseline, checkpoint, and diff images. You can obtain these images using the REST API.
AppUrlsType:AppUrls
Use the object returned by this property to retrieve the URLs, and then you can use them to open the Test Manager in a browser preloaded with this step.
HasBaselineImageType:bool
The value of this property is whether the baseline has a baseline image for this step.
HasCheckpointImageType:bool
Returns whether there is a checkpoint image for this step.
IsDifferentType:bool
The value of this property is true if the checkpoint does not match the baseline image.
NameType:string
The value of this property is the name (tag) assigned to the step (in the check method).