diff --git a/playwright-tests/pages/TpaSubmitPage.ts b/playwright-tests/pages/TpaSubmitPage.ts index 1726a75e..0439adbe 100644 --- a/playwright-tests/pages/TpaSubmitPage.ts +++ b/playwright-tests/pages/TpaSubmitPage.ts @@ -21,15 +21,6 @@ export class TpaSubmitPage extends BasePage { this.deductible = page.locator('span#deductible-value, span.deductible-value'); } - /* TODO: Fix flakiness of recal alert - /*async validateRecalAlert() { - await this.recalAlert.waitFor({ state: 'visible', timeout: 5000 }); - await this.learnMoreLink.click(); - await this.recalModal.waitFor({ state: 'visible', timeout: 5000 }); - await this.recalModal.getByRole('button', { name: 'Close' }).click(); - - }*/ - async validateDeductible(claimDetails: IClaimDetails) { await expect(this.deductible).toContainText(claimDetails.policyDeductible.toLocaleString()); }