Damage location fields changes

This commit is contained in:
Udayboppasafelite 2026-06-17 21:20:37 -04:00
parent ab4735b017
commit c85a6eba9e

View file

@ -103,11 +103,10 @@ export class WelcomePage extends BasePage {
if (!client?.clientFlags.isWelcomeDamageLocationRequired) {
return;
}
await expect(this.page.getByText(/which city did the damage occur/i)).toBeVisible();
await expect(this.page.getByText(/which state did the damage occur/i)).toBeVisible();
await expect(this.city).toBeVisible();
await expect(this.state).toBeVisible();
await expect(this.page.getByText(/which city did the damage occur/i)).toBeVisible();
await expect(this.city).toBeVisible();
}
async populatePage(customerDetails: ICustomerDetails, claimDetails: IClaimDetails, isFillCityInfo: boolean) {