more changes
This commit is contained in:
parent
6826dcf4ca
commit
f9639b2d7a
2 changed files with 7 additions and 1 deletions
|
|
@ -261,6 +261,12 @@ export class SchedulePage extends BasePage {
|
||||||
await this.waitForPageOrComponentload();
|
await this.waitForPageOrComponentload();
|
||||||
await this.validateProgressBar(ProgressBarPercentages.SchedulePage);
|
await this.validateProgressBar(ProgressBarPercentages.SchedulePage);
|
||||||
|
|
||||||
|
//Looks like an issue with the insurance flow - remove comments once fixed
|
||||||
|
/*if (testData.isHeavyTruck) {
|
||||||
|
const vuexState = JSON.parse(await this.page.evaluate('localStorage.getItem(\'vuex\')'));
|
||||||
|
expect(vuexState.order.lineItems.supportingItems.find((item: any) => item && item.partNumber == "labor2")).toBeTruthy();
|
||||||
|
}*/
|
||||||
|
|
||||||
if (handleMobileFirstModal) {
|
if (handleMobileFirstModal) {
|
||||||
return await this.handleMobileFirstPopUp(testData);
|
return await this.handleMobileFirstPopUp(testData);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ const insuranceUSAABigTruckVerifiedData: Partial<ITestData> = {
|
||||||
const insuranceUSAABigTruckVerifiedTests: ITestCase[] = [];
|
const insuranceUSAABigTruckVerifiedTests: ITestCase[] = [];
|
||||||
|
|
||||||
const tc = {
|
const tc = {
|
||||||
name: `InsuranceBigTruckVerified`,
|
name: `InsuranceUSAABigTruckVerified`,
|
||||||
tags: ['@E2E','@InsuranceBigTruckVerified', '@test_report', '@Insurance'],
|
tags: ['@E2E','@InsuranceBigTruckVerified', '@test_report', '@Insurance'],
|
||||||
testData: insuranceUSAABigTruckVerifiedData
|
testData: insuranceUSAABigTruckVerifiedData
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue