DigitalConsumer.ISS/playwright-tests/pages/CapabilityQuestionsPage.ts
Alex Humphries 49c951fe25 Update validateURL to account for variations in query string
In scenarios that reach the order confirmation page, the query string
includes more than the issPageValue, whiche was breaking validateURL
2025-03-07 11:47:06 -05:00

10 lines
No EOL
274 B
TypeScript

import { Page } from "@playwright/test";
import { PartQuestionsPage } from "./PartQuestionsPage";
export default class CapabilityQuestionsPage extends PartQuestionsPage {
issPageValue = 'capability-questions';
constructor(page: Page) {
super(page);
}
}