diff --git a/docs/visual-testing/integrations/playwright.md b/docs/visual-testing/integrations/playwright.md new file mode 100644 index 0000000000..5c02a69e86 --- /dev/null +++ b/docs/visual-testing/integrations/playwright.md @@ -0,0 +1,176 @@ +--- +sidebar_label: Playwright +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + +# Playwright Integration + +An extension for [Playwright](https://playwright.dev/) to integrate effortless visual testing with Sauce Visual. + +## Usage + +### Step 1 - Install the Visual Package + +Install and add the Sauce Visual Playwright package to your project. + +```sh +npm i @saucelabs/visual-playwright +``` + +### Step 2 - Create Your Setup and Teardown + +The setup / teardown block will allow Sauce Visual to automatically create and finish builds and associate all snapshots with the current build during a run. + +Create the following two files with their respective contents or append the visual config to your current global setup / teardowns: + +
+ `global-setup.ts` File contents + +```ts +import { FullConfig } from '@playwright/test'; +import { sauceVisualSetup } from "@saucelabs/visual-playwright"; + +export default async function globalSetup(config: FullConfig) { + // If you already have a setup, append this line somewhere in your setup block. + await sauceVisualSetup(); +} +``` +
+ +
+ `global-teardown.ts` File contents + +```ts +import { FullConfig } from '@playwright/test'; +import { sauceVisualTeardown } from "@saucelabs/visual-playwright"; + +export default async function globalTeardown(config: FullConfig) { + // If you already have a teardown, append this line somewhere in your teardown block. + await sauceVisualTeardown(); +} +``` +
+ + +Edit your `playwright.config.ts` and append the following config options with the filenames that you created / referenced above if not already present: + +```js +import { defineConfig } from '@playwright/test'; + +export default defineConfig({ + // ... your other config options + globalSetup: require.resolve('./global-setup'), + globalTeardown: require.resolve('./global-teardown'), +}); +``` + +### Step 3 - (Optional) Add a Sauce Visual Fixture + +Though this step is optional it is _highly recommended_ for ease of use / developer experience. By creating a custom Playwright fixture you can enable quick and convenient access to the Sauce Visual service, as well as setting and configuring global defaults which can be overridden on a per-test basis. See the [Playwright Fixtures Docs Page](https://playwright.dev/docs/test-fixtures#creating-a-fixture) for more information and other examples of the benefits. + +If you already have a custom fixture file, append the body of the example `base.extend` below to it; otherwise, create a `custom-test.ts` file with the included contents. + +
+ `custom-test.ts` File contents + +```js +import { test as base } from "@playwright/test"; +import { sauceVisualFixtures, SauceVisualFixtures } from "@saucelabs/visual-playwright"; + +export const test = base.extend({ + // Set up the Sauce Visual fixture, and optionally customize the global options which are sent + // with each sauce visual check to reduce duplication. + ...sauceVisualFixtures({ + // You can append some of the options available in the 'Check Options' section below. Ex: + // captureDom: true, + // delay: 200, + }), +}); + +export { expect } from "@playwright/test"; +``` + +[//]: # ( fake closing block here as a comment for MDX format) +
+ +After setup, you would replace usages of + +```js +import { test, expect } from '@playwright/test' +``` + +with + +```js +import { test, expect } from './custom-test' +``` + +### Step 4 - Use Sauce Visual in Your Tests + +If you've set up a fixture during Step 3, use the 'Fixture' example, otherwise, you can still access Sauce Visual using our exported function with the 'Standard' example. + + + +```ts +import { test, expect } from '../custom-test'; + +// Add the `sauceVisual` fixture into each test you want to capture a snapshot in +// -------------------------------- here ▼ -------------------------------------- +test('has title', async ({ page, sauceVisual }) => { + await page.goto('https://playwright.dev/'); + await expect(page).toHaveTitle(/Playwright/); + + // Call `visualCheck` using the fixture and optionally apply any additional + // options as the second argument. + await sauceVisual.visualCheck("Fixture Snapshot"); +}); +``` + + +```ts +import { expect, test } from '@playwright/test'; +// Import `sauceVisualCheck` from our visual plugin +import { sauceVisualCheck } from '@saucelabs/visual-playwright'; + +// Expose the `testInfo` argument here ▼ ------- +test('has title', async ({ page }, testInfo) => { + await page.goto('https://docs.saucelabs.com/visual-testing/integrations/playwright/'); + await expect(page).toHaveTitle(/Playwright/); + + // Pass the current page object and test info into the `sauceVisualCheck` call, and optionally + // customize the options via the fourth argument. + await sauceVisualCheck(page, testInfo, 'Export Snapshot'); +}); +``` + + + +### Step 5 - Configure Your Sauce Labs Credentials + +Sauce Visual relies on environment variables for authentication.
+Both `SAUCE_USERNAME` and `SAUCE_ACCESS_KEY` need to be set prior starting your Playwright tests. + +Username and Access Key can be retrieved from https://app.saucelabs.com/user-settings. + +```sh +export SAUCE_USERNAME=__YOUR_SAUCE_USER_NAME__ +export SAUCE_ACCESS_KEY=__YOUR_SAUCE_ACCESS_KEY__ +``` + +### Step 6 - Run Your Tests + +Upon executing your tests for the first time under this step, a visual baseline is automatically created in our system. This baseline serves as the standard for all subsequent tests. As new tests are run, they are compared to this original baseline, with any deviations highlighted to signal visual changes. These comparisons are integral for detecting any unintended visual modifications early in your development cycle. All test builds, including the initial baseline and subsequent runs, can be monitored and managed through the Sauce Labs platform at [Sauce Visual Builds](https://app.saucelabs.com/visual/builds). + +## Check Options + +These options can be defined globally during fixture initialization (see [Step 3](#step-3---optional-add-a-sauce-visual-fixture)) or as an option when calling `sauceVisual.visualCheck` / `sauceVisualCheck`. + +| Key | Type | Default | Description | +|:----------------|:-------------------------|:-------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `captureDom` | `boolean` | `true` | Toggles DOM snapshot capture. | +| `clipSelector` | `string` | `undefined` | A CSS selector that we should clip the final screenshot to. | +| `delay` | `number` | `0` (no delay) | A number, in ms, that we should delay before taking the snapshot. | +| `ignoreRegions` | `(RegionIn \| string)[]` | `[]` (empty) | An array of manually created ignore regions, or CSS selectors in string form to ignore. | +| `diffingMethod` | `DiffingMethod` | `DiffingMethod.Balanced` | The diffing method from the backend that we should use when performing visual differences. This can be customized by using the `DiffingMethod` enum exported from our `@saucelabs/visual` package. | diff --git a/sidebars.js b/sidebars.js index c1420b5a41..b6ad6265cd 100644 --- a/sidebars.js +++ b/sidebars.js @@ -1721,6 +1721,7 @@ module.exports = { 'visual-testing/integrations/webdriverio', 'visual-testing/integrations/python', 'visual-testing/integrations/python-robot-framework', + 'visual-testing/integrations/playwright', ], }, 'visual-testing/cli',