2021-09-13 22:05:38 +02:00

8 lines
244 B
TypeScript

import { test, expect } from '@playwright/test';
test('basic test', async ({ page }) => {
await page.goto('https://playwright.dev/');
await page.locator('text=Get Started').click();
await expect(page).toHaveTitle(/Getting Started/);
});