From f9639b2d7a59f1fdf596a97f1ab7011772994329 Mon Sep 17 00:00:00 2001 From: kpatel8hs4io <31411746+kpatel8hs4io@users.noreply.github.com> Date: Tue, 12 May 2026 22:26:41 -0400 Subject: [PATCH] more changes --- playwright-tests/pages/SchedulePage.ts | 6 ++++++ playwright-tests/tests/InsuranceUSAABigTruckVerified.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/playwright-tests/pages/SchedulePage.ts b/playwright-tests/pages/SchedulePage.ts index 088049693..8d863e94f 100644 --- a/playwright-tests/pages/SchedulePage.ts +++ b/playwright-tests/pages/SchedulePage.ts @@ -261,6 +261,12 @@ export class SchedulePage extends BasePage { await this.waitForPageOrComponentload(); await this.validateProgressBar(ProgressBarPercentages.SchedulePage); + //Looks like an issue with the insurance flow - remove comments once fixed + /*if (testData.isHeavyTruck) { + const vuexState = JSON.parse(await this.page.evaluate('localStorage.getItem(\'vuex\')')); + expect(vuexState.order.lineItems.supportingItems.find((item: any) => item && item.partNumber == "labor2")).toBeTruthy(); + }*/ + if (handleMobileFirstModal) { return await this.handleMobileFirstPopUp(testData); } diff --git a/playwright-tests/tests/InsuranceUSAABigTruckVerified.ts b/playwright-tests/tests/InsuranceUSAABigTruckVerified.ts index f27035cbe..74566a535 100644 --- a/playwright-tests/tests/InsuranceUSAABigTruckVerified.ts +++ b/playwright-tests/tests/InsuranceUSAABigTruckVerified.ts @@ -80,7 +80,7 @@ const insuranceUSAABigTruckVerifiedData: Partial = { const insuranceUSAABigTruckVerifiedTests: ITestCase[] = []; const tc = { - name: `InsuranceBigTruckVerified`, + name: `InsuranceUSAABigTruckVerified`, tags: ['@E2E','@InsuranceBigTruckVerified', '@test_report', '@Insurance'], testData: insuranceUSAABigTruckVerifiedData };