Install the package
Install the TestZombie Playwright library via npm.
npm install @testzombie/playwright
TestZombie extends existing Playwright tests with intelligent locator recovery, healing logs and actionable fix recommendations.
TestZombie adds healing and analysis without replacing your framework model.
Playwright provides a powerful testing API. TestZombie adds an intelligence layer for cases where applications and locators evolve.
Broken locators are analyzed and recovered when a safe match is available.
Playwright support covers Chromium, Firefox and WebKit.
The integration complements existing Playwright projects instead of rebuilding them.
Healing events become concrete locator and code recommendations.
Three steps are enough: install the package, replace the Playwright import, and set your TestZombie credentials in the Playwright configuration.
Install the TestZombie Playwright library via npm.
npm install @testzombie/playwright
Replace the existing import from @playwright/test with @testzombie/playwright.
import { test, expect } from '@playwright/test';
import { test, expect } from '@testzombie/playwright';
Set the API key and email in your Playwright configuration.
process.env.TESTZOMBIE_API_KEY = '';
process.env.TESTZOMBIE_EMAIL = '';
Start with your existing Playwright project and add self-healing, analysis and developer fix recommendations.