TestResults class
Platform: Selenium 3Language: JavaScript SDK:
Encapsulates the results of a visual test, including summary information and checkpoint-specific details.
An object of this class is returned by the close method upon test completion.
Require statement
const {TestResults} = require('const EyesSDK = require('eyes.selenium'))');
Properties
- appUrlsType:Object {batch: session:}
- Returns an object with a set of URLs that you can use to access the Test manager in a browser, preloaded with the results of this test.
- appnameType:string
- Returns the application name.
- batchIdType:string
- Returns the unique batch id of the test batch.
- batchNameType:string
- Returns the batch name.
- branchNameType:string
- Returns the branch name of the test.
- durationType:number
- Returns the amount of time the test ran.
- hostAppType:string
- Returns the host application (browser) property of the test.
- hostDisplaySizeType:Object {width:, height:}
- Returns the viewport size used to identify the baseline.
- hostOSType:string
- Returns the host OS property of the test.
- isAbortedType:boolean
- Returns whether the test was aborted or not (i.e. if abortIfNotClosed was called and close was not called previously).
- isDifferentType:boolean
- Indicates that at least one step was new, missing, or a mismatch.
- isnewType:boolean
- Returns whether this is a new test or not (i.e. no existing baseline was found for this test).
- matchesType:number
- Returns the number of test steps where the checkpoint image matched the baseline image.
- mismatchesType:number
- Returns the number of test steps where the checkpoint image did not match the baseline image. This includes new steps (i.e. steps where a baseline corresponding to the checkpoint was not found). It does not include missing steps. You can obtain this value using the missing property.
- missingType:number
- Returns the number of test steps where an image corresponding to the checkpoint image was not found in the baseline.
- nameType:string
- Returns the name of the test.
- startedAtType:string
- Returns the date and time the test started.
- statusType:string
- Returns a status that represents the results of the test.
- stepsType:number
- Returns the total number of steps in the result.