StepInfoPlain 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 type 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 getStepsInfo method.
apiUrls property
Syntax
value = stepinfo.apiUrls;
Type: ApiUrlsPlain
See ApiUrls for a detailed description of this object.
appUrls property
Syntax
value = stepinfo.appUrls;
Type: AppUrlsPlain
See AppUrls for a detailed description of this object.
hasBaselineImage property
Syntax
value = stepinfo.hasBaselineImage;
Type: boolean
isDifferent property
Syntax
value = stepinfo.isDifferent;
Type: boolean
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
value = stepinfo.name;
Type: string