playwright/tests-examples/website-baamtu.spec.ts
OumarKanteBaamtu 1b543e8f06 Initial commit
2024-07-02 15:30:51 +00:00

7 lines
146 B
TypeScript

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