playwright/packages/create-playwright/assets/example.spec.js
2021-09-13 22:48:19 +02:00

9 lines
262 B
JavaScript

// @ts-check
const { test, expect } = require('@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/);
});