Initial commit of the Playwright test framework, including: - Configuration files for Playwright, Docker, and Sauce Labs - Test case structure and page object models - CI/CD pipeline configuration - Utilities and business logic implementations This framework will be used for end-to-end testing of the FMG application.
11 lines
No EOL
351 B
TypeScript
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
|
|
} |