Update locator for lookup buttons
This commit is contained in:
parent
c8971ef97d
commit
68d914dd0e
2 changed files with 2 additions and 2 deletions
|
|
@ -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');
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue