mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
9 lines
262 B
JavaScript
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/);
|
||
|
});
|