8 lines
277 B
TypeScript
8 lines
277 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('#5 Email link should use mailto protocol', async ({ page }) => {
|
|
await page.goto('https://uat.dailykart.net/', { waitUntil: 'load', timeout: 60000 }); // 60 sec timeout
|
|
|
|
// rest of your test
|
|
});// test timeout 60 sec
|