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.
14 lines
No EOL
431 B
TypeScript
14 lines
No EOL
431 B
TypeScript
import { Locator, Page } from "@playwright/test";
|
|
import { InsuranceBasePage } from "./InsuranceBasePage";
|
|
|
|
export default class RecalibrationInfoPage extends InsuranceBasePage {
|
|
url = process.env['BASE_URL']! + '/FixMyGlass/RecalibrationInfo.aspx';
|
|
|
|
readonly continueButton: Locator;
|
|
|
|
constructor(page: Page) {
|
|
super(page);
|
|
|
|
this.continueButton = page.getByRole('button', { name: 'Continue' });
|
|
}
|
|
} |