Playwright VisualTest Plugin
Documentation
Click here for more detailed docs on SmartBear's website
Setup
npm install @smartbear/visualtest-playwright --save-dev
npx visualtest-setup
Enter your projectToken in the newly created visualTest.config.js
file:
module.exports = {projectToken: 'PROJECT_TOKEN'}
Implementation
import {sbvtCapture, sbvtGetTestRunResult, sbvtPrintReport} from "@smartbear/visualtest-playwright";
import {expect, test} from "@playwright/test";
test(`should visit Playwright example page, then take sbvtCaptures`, async ({page}) => {
await page.goto('https://playwright.dev/')
await sbvtCapture(page, 'Playwright Example Page')
await sbvtCapture(page, 'element', {
elementCapture: ".hero"
});
await sbvtCapture(page, 'Homepage viewport', {
viewport: true
})
await sbvtPrintReport();
const sbvtReport = await sbvtGetTestRunResult();
expect(sbvtReport.failed).toEqual(0);
})
lazyload fullpage capture
test('test taking an element sbvt capture', async ({page}) => {
await page.goto('https://smartbear.github.io/visual-testing-example-website/Example4/Original/index.html');
await sbvtCapture(page, 'fullpage-capture',
{
lazyload: 250,
});
});
viewport capture
test('take a viewport snapshot', async ({page}) => {
await page.goto('https://smartbear.com');
await sbvtCapture(page, 'sb-viewport', {
viewport: true
});
});
element capture
test('take an element sbvt capture', async ({page}) => {
await page.goto('https://smartbear.github.io/visual-testing-example-website/Example4/Original/index.html');
await sbvtCapture(page, 'element-hero-content-capture', {
elementCapture: ".ud-hero-content"
});
});
ignore element capture
test('ignore element sbvt capture', async ({page}) => {
await page.goto('https://smartbear.github.io/visual-testing-example-website/Example4/Original/index.html');
await sbvtCapture(page, 'element-hero-content-capture', {
ignoreElements: [".ud-hero-content"],
lazyload: 250
});
});
layout mode capture
test('layout mode comparison', async ({page}) => {
await page.goto('https://smartbear.github.io/visual-testing-example-website/Example4/Original/index.html');
await sbvtCapture(page, 'layout-mode', {
comparisonMode: 'layout',
sensitivity: 'low',
});
});
sbvtPrintReport & sbvtGetTestRunResult
test('test taking an element sbvt capture', async ({page}) => {
await page.goto('https://smartbear.github.io/visual-testing-example-website/Example4/Original/index.html');
await sbvtCapture(page, 'fullpage-capture', {
lazyload: 250,
});
const testRunResults = await sbvtGetTestRunResult()
await sbvtPrintReport()
});
File Testing
test('test creating a pdf and then checking the a key value pair', async ({page}) => {
await page.goto('https://smartbear.github.io/visual-testing-example-website/Example4/Original/index.html');
const pdf = await page.pdf();
const pdfKeyValuePairs = (await sbvtSendFile(pdf, 'file-name'))
console.log('KVPs: ',pdfKeyValuePairs);
expect(pdfKeyValuePairs["New User"]).toEqual('34567');
});
Assigning captures to a test group name
module.exports = {
projectToken: 'PROJECT_TOKEN',
testGroupName: 'test group name'
}
Grouping Playwright workers together under one test run
Each worker process does not communicate with the other workers, this causes separate testRuns and makes grouping all the images into one testRun tough. To alleviate this, add the below line to your playwright.config
file
module.exports = defineConfig({
globalSetup: '@smartbear/visualtest-playwright',
});
Assigning SCM data to a test run
Save Source Control Manager data on the environment variable
SBVT_SCM_BRANCH=branch-name
SBVT_SCM_COMMIT_ID=commit-hash