diff --git a/playwright-tests/pages/AddressLookupPage.ts b/playwright-tests/pages/AddressLookupPage.ts index 70f4f514..f64a17bc 100644 --- a/playwright-tests/pages/AddressLookupPage.ts +++ b/playwright-tests/pages/AddressLookupPage.ts @@ -15,7 +15,7 @@ export class AddressLookupPage extends BasePage { super(page); this.page = page; this.addressForm = new AddressForm(page); - this.addressNoMatchTextBox = page.getByText('Your address didn’t return a VIN matchPlease re-enter the information below or'); + this.addressNoMatchTextBox = page.getByText('Your address didn’t return a VIN match'); this.stateRestrictionsTextBox = page.getByText('State restrictionsLooks like'); } diff --git a/playwright-tests/pages/VehicleLookupPage.ts b/playwright-tests/pages/VehicleLookupPage.ts index 1dab391e..8e8433d3 100644 --- a/playwright-tests/pages/VehicleLookupPage.ts +++ b/playwright-tests/pages/VehicleLookupPage.ts @@ -19,7 +19,7 @@ export class VehicleLookupPage extends BasePage { constructor(page: Page) { super(page); this.page = page; - this.vinLookupButton = page.getByLabel('Provide my VIN manually', { exact: true }); + this.vinLookupButton = page.getByLabel('Provide my VIN', { exact: true }); this.addressLookupButton = page.getByLabel('Provide my home address', { exact: true }); this.licenseLookupButton = page.getByLabel('Provide my license plate #', { exact: true }); this.vinLookupPage = new VinLookupPage(page);