In scenarios that reach the order confirmation page, the query string includes more than the issPageValue, whiche was breaking validateURL
10 lines
No EOL
267 B
TypeScript
10 lines
No EOL
267 B
TypeScript
import { Page } from "@playwright/test";
|
|
import { PartQuestionsPage } from "./PartQuestionsPage";
|
|
|
|
export default class VehiclePartQuestionsPage extends PartQuestionsPage{
|
|
issPageValue = 'vehicle-parts';
|
|
|
|
constructor(page: Page) {
|
|
super(page);
|
|
}
|
|
} |