Remove unused address form
This commit is contained in:
parent
a31c7f7e63
commit
c4a6990d81
1 changed files with 0 additions and 3 deletions
|
|
@ -1,13 +1,11 @@
|
||||||
import { type Locator, type Page } from '@playwright/test';
|
import { type Locator, type Page } from '@playwright/test';
|
||||||
import { BasePage } from './BasePage';
|
import { BasePage } from './BasePage';
|
||||||
import { ICustomerDetails } from '@business-logic/types/CustomerDetails';
|
import { ICustomerDetails } from '@business-logic/types/CustomerDetails';
|
||||||
import { AddressForm } from './forms/AddressForm';
|
|
||||||
|
|
||||||
export class PolicyHolderDetailsPage extends BasePage {
|
export class PolicyHolderDetailsPage extends BasePage {
|
||||||
readonly page: Page;
|
readonly page: Page;
|
||||||
readonly firstNameTextBox: Locator;
|
readonly firstNameTextBox: Locator;
|
||||||
readonly lastNameTextBox: Locator;
|
readonly lastNameTextBox: Locator;
|
||||||
readonly addressForm: AddressForm; // double check if this is used for advanced flows ?
|
|
||||||
readonly addressInputBox: Locator;
|
readonly addressInputBox: Locator;
|
||||||
readonly emailAddressTextBox: Locator;
|
readonly emailAddressTextBox: Locator;
|
||||||
|
|
||||||
|
|
@ -18,7 +16,6 @@ export class PolicyHolderDetailsPage extends BasePage {
|
||||||
this.page = page;
|
this.page = page;
|
||||||
this.firstNameTextBox = page.locator('#firstNameField');
|
this.firstNameTextBox = page.locator('#firstNameField');
|
||||||
this.lastNameTextBox = page.locator('#lastNameField');
|
this.lastNameTextBox = page.locator('#lastNameField');
|
||||||
this.addressForm = new AddressForm(page);
|
|
||||||
this.emailAddressTextBox = page.locator('#emailField');
|
this.emailAddressTextBox = page.locator('#emailField');
|
||||||
this.addressInputBox = page.locator('input[name="autocomplete"]'); // for essential flows
|
this.addressInputBox = page.locator('input[name="autocomplete"]'); // for essential flows
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue