DigitalConsumer.FixMyGlass/playwright-tests/pages/ZipLookupPage.ts
maguire-arman a2ca9134d1 Initializes Playwright test framework
Sets up the core infrastructure for Playwright-based automated testing, including:
- Docker support for consistent environments
- Azure Pipelines configuration for CI/CD
- Page Object Model structure for maintainable tests
- Test data, validation, and rule engine implementation
- Test configuration for alerts and other scenarios
2025-05-08 15:45:05 -04:00

11 lines
No EOL
351 B
TypeScript

import { type Page } from '@playwright/test';
import { LookupPage } from './LookupPage';
export class ZipLookupPage extends LookupPage {
url = process.env['BASE_URL']! + '/fmg/?fmgPage=service-zip';
constructor(page: Page) {
super(page);
}
// No additional methods needed as all functionality is inherited from LookupPage
}