Remove empty method and comment
This commit is contained in:
parent
70f694eba2
commit
2ff1fb3186
1 changed files with 0 additions and 5 deletions
|
|
@ -28,7 +28,6 @@ export class BailoutPage extends BasePage {
|
|||
await expect.soft(this.firstNameTextBox).toHaveValue(customerDetails.firstName);
|
||||
await expect.soft(this.lastNameTextBox).toHaveValue(customerDetails.lastName);
|
||||
await expect.soft(this.phoneNumberTextBox).toHaveValue(customerDetails.phoneNumber);
|
||||
//await expect.soft(this.emailAddressTextBox).toHaveValue(customerDetails.email);
|
||||
expect.soft(await this.getBailoutCode()).toEqual(bailoutCode);
|
||||
}
|
||||
|
||||
|
|
@ -40,10 +39,6 @@ export class BailoutPage extends BasePage {
|
|||
expect(this.emailAddressTextBox.inputValue()).not.toBe('');
|
||||
}
|
||||
|
||||
async validateHeavyTruckErrorMessage(){
|
||||
|
||||
}
|
||||
|
||||
async getBailoutCode() {
|
||||
const mainLocalStorage = JSON.parse(await this.page.evaluate('sessionStorage.getItem(\'main\')'));
|
||||
const bailoutCode = mainLocalStorage.applicationUser.pageData['bailout-page'].bailoutCode as number;
|
||||
|
|
|
|||
Loading…
Reference in a new issue