import { Page } from "@playwright/test"; import { PartQuestionsPage } from "./PartQuestionsPage"; export default class VehiclePartQuestionsPage extends PartQuestionsPage{ url = process.env['BASE_URL']! + '/?issPage=vehicle-parts'; constructor(page: Page) { super(page); } }