11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
|
|
import { test, expect } from '@playwright/test';
|
|
|
|
test('#6 Location address should be visible', async ({ page }) => {
|
|
await page.goto('https://uat.dailykart.net/', {
|
|
waitUntil: 'load',
|
|
timeout: 60000,
|
|
});
|
|
|
|
// ... scroll and check location info
|
|
}); |