skills/smithery.ai/playwright-visual-testing

playwright-visual-testing

Installation
SKILL.md

Playwright Visual Testing Skill

Patterns for visual regression testing with Playwright.

Screenshot Assertions

Basic Screenshot Comparison

import { test, expect } from '@playwright/test'

test('visual comparison', async ({ page }) => {
  await page.goto('/')

  // Compare full page
  await expect(page).toHaveScreenshot()
Installs
4
First Seen
Mar 31, 2026
playwright-visual-testing from smithery.ai