7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
import { test, expect, type Page } from '@playwright/test';
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('https://baamtu.com/');
|
|
});
|
|
|