mirror of
https://github.com/fergalmoran/supanextail.git
synced 2026-01-09 01:55:30 +00:00
9 lines
301 B
TypeScript
9 lines
301 B
TypeScript
import { expect, test } from '@playwright/test';
|
|
|
|
test('basic test', async ({ page }) => {
|
|
console.log(process.env.PLAYWRIGHT_TEST_BASE_URL);
|
|
await page.goto('https://playwright.dev/');
|
|
const title = page.locator('.navbar__inner .navbar__title');
|
|
await expect(title).toHaveText('Playwright');
|
|
});
|