DigitalConsumer.FixMyGlass/playwright-tests/pages/EndorsementsPage.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

65 lines
No EOL
2.5 KiB
TypeScript

import { expect, type Locator, type Page } from '@playwright/test';
import { BasePage } from './BasePage';
import { IEndorsementDetails } from '@business-logic/types/CustomerDetails';
import { EndorsementType } from '@business-logic/types/Enums';
import { InsuranceBasePage } from './InsuranceBasePage';
import { step } from '@business-logic/types/Step';
import { ITestData } from '@business-logic/types/ITestData';
export class EndorsementsPage extends InsuranceBasePage {
readonly page: Page;
readonly educatorYesButton: Locator;
readonly educatorNoButton: Locator;
url = process.env['BASE_URL']! + '/FixMyGlass/PolicyEndorsements.aspx';
constructor(page: Page) {
super(page);
this.page = page;
this.educatorYesButton = this.page.getByRole('link', { name: 'Yes' });
this.educatorNoButton = this.page.getByRole('link', { name: 'Yes' });
}
async verifyEndorsements(endorsements: IEndorsementDetails[]) {
for (const endorsement of endorsements) {
switch(endorsement.endorsementType) {
case EndorsementType.Educator:
if (endorsement.isOnPolicy) {
await expect.soft(this.educatorYesButton).toBeAttached();
} else {
await expect.soft(this.educatorYesButton).not.toBeAttached();
}
break;
case EndorsementType.EmployeeParking:
// TODO: Implement
break;
}
}
}
async selectEndorsements(endorsements: IEndorsementDetails[]) {
for (const endorsement of endorsements) {
if (endorsement.isOnPolicy) {
switch (endorsement.endorsementType) {
case EndorsementType.Educator:
if (endorsement.isClickYes) {
await this.educatorYesButton.click();
} else {
await this.educatorNoButton.click();
}
break;
case EndorsementType.EmployeeParking:
// TODO: Implement
break;
}
}
}
}
@step("EndorsementsPage >> Select endorsements: ")
async handleEndorsementsPage(testData: Partial<ITestData>) {
const { endorsements } = testData;
await this.verifyEndorsements(endorsements!);
await this.selectEndorsements(endorsements!);
await this.nextPage();
}
}