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
20 lines
No EOL
768 B
TypeScript
20 lines
No EOL
768 B
TypeScript
import { Page } from "@playwright/test";
|
|
import { PartQuestionsPage } from "./PartQuestionPage";
|
|
import { step } from "@business-logic/types/Step";
|
|
import { ITestData } from "@business-logic/types/ITestData";
|
|
|
|
export default class VehiclePartQuestionsPage extends PartQuestionsPage{
|
|
url = process.env['BASE_URL']! + '/fmg/?fmgPage=vehicle-parts';
|
|
|
|
constructor(page: Page) {
|
|
super(page);
|
|
}
|
|
|
|
@step("VehiclePartsPage >> Select Vehicle Part Questions: ")
|
|
async handleVehiclePartsPage(testCase: Partial<ITestData>) {
|
|
const { vehiclePartQuestions } = testCase;
|
|
await this.validatePartQuestions(vehiclePartQuestions!);
|
|
await this.selectPartQuestionResponses(vehiclePartQuestions!);
|
|
await this.nextPage();
|
|
}
|
|
} |