playwright-interceptors
v0.0.1
Published
Helpers for Playwright UI testing.
Downloads
5
Readme
playwright-ui-helpers
Helpers for Playwright UI testing.
Installation
npm install playwright-ui-helpersUsage
import { enableMockRecording } from 'playwright-ui-helpers';
import { test } from '@playwright/test';
test('example', async ({ page }) => {
enableMockRecording(page);
// ... your test code ...
});