Skip to main content

Sauce Visual Testing

Important

Access to this feature is currently limited to Enterprise customers as part of our commitment to providing tailored solutions. We are excited to announce that self-service access is under development and will be released shortly. Stay tuned!

Get clear and instant visibility into the impact of code changes on your UI across browsers, devices, and operating systems with our automated visual testing solution, which generates side-by-side comparisons of your UI versions with DOM diffs inspection.

Know exactly where and what has changed so that you can deliver a consistent and intuitive user experience.

Sauce Visual Testing stands for:

Faster Test Execution

  • Purpose-built within the world’s best test infrastructure
  • Fewer back-and-forth commands between client and server
  • Based on efficient OSS framework
  • No need to down/upload images

Less Complexity

  • Less code
  • Less maintenance
  • Less flakiness

What You'll Need

Workflows

Sauce Visual testing consists of two main workflows: Test execution and review. Both workflows need to implemented, but they may performed by different people or teams. Read below to learn more about the workflows.

Test Execution

This workflow is responsible for generating snapshots (screenshots) of the website or app under test. Users new to visual testing often have an existing test suite in WebdriverIO, Cypress or a similar framework. With Sauce Visual testing existing test suites can be enhanced with a few extra "take a snapshot" statements and that is all it takes to implement this workflow.

Follow me to learn more

Review

This workflow is responsible for approving or rejecting detected changes between a snapshot and a baseline. Users will be available to review changes and make the baseline evolve for accepted changes.

Follow me to learn more

Concepts

Sauce Visual Testing comes with its set of concepts that will be defined here.

Definitions

Snapshot

A snapshot is an image that will be compared by Visual Testing. For example: the screenshot of your website or mobile application.

Build

A build groups multiple snapshots. E.g. to be able to view all snapshots taken during the execution of your test suite in CI or locally.

Build Status

A build has a status that represents its current state:

StatusDescription
AcceptedChanges have been detected and they have been accepted
No changesNo difference has been detected between snapshots and the matching baselines
RunningBuild is still running
QueuedSnapshots are waiting to be compared against baselines
For reviewChanges have been detected and and action is needed
ErroredAn error has occurred
RejectedChanges have been detected and they have been rejected
No SnapshotsThere is no snapshot in this build

Baseline

A baseline is what a snapshot is compared to.

Diff

A diff represents the differences that have been detected between a snapshot and its matching baseline.

Diff Status

A diff has a status that represents its current state:

StatusDescription
No ChangesNo difference has been detected between this snapshot and the matching baseline
For ReviewChanges have been detected and an action is needed
(meaning snapshots without baselines or with a visual difference)
AcceptedChanges have been detected and they have been accepted
RejectedChanges have been detected and they have been rejected

Baseline Matching

Every integration generates snapshots and compares them against a baseline snapshot to detect differences. The following snapshot metadata keys are used to determine the appropriate baseline:

PropertyTypeDescription
namestringThe name of the snapshot which will be set when the sauceVisualCheck() is called. See each language binding.
testNamestringThe name of the test where the snapshot has been taken (only with Cypress, WebdriverIO, and Storybook BETA). This will automatically determined by the language binding.
suiteNamestringThe name of the suite where the snapshot has been taken (only with Cypress, WebdriverIO, and Storybook BETA). This will automatically determined by the language binding.
browserstringThe browser used to take the snapshot. This will automatically be determined by Sauce Visual.
operatingSystemstringThe operating system used to take the snapshot. This will automatically be determined by Sauce Visual.
operatingSystemVersionstringThe operating system version used to take the snapshot. This will automatically be determined by Sauce Visual.
viewportWidthstringThe viewport width used to take the snapshot. This will automatically be determined by Sauce Visual.
viewportHeightstringThe viewport height used to take the snapshot. This will automatically be determined by Sauce Visual.
projectstringThe project name. This can be set during service initiation, for more information see the language bindings.
branchstringThe branch name. This can be set during service initiation, for more information see the language bindings.
devicestringThe device name. This will automatically be determine by Sauce Visual.

If multiple baselines match, the most recent one is selected for diff computation.

note

Note that not all properties are exposed on all testing frameworks. In these cases, a default value (0, null or empty string) is used.

The matching process happens as part of the snapshot creation (createSnapshot in the API). This means, that a baseline can only be considered for a diff if it existed before the createSnapshot call.

Integrations

Sauce Visual provides integrations with different kind of frameworks:

  • E2E Testing allows to navigate a website and capture snapshots any time this is needed.
  • Component Testing allows to test extensively all your components.