diff --git a/playwright-tests/pages/BasePage.ts b/playwright-tests/pages/BasePage.ts index 0b853baa..6d2d5462 100644 --- a/playwright-tests/pages/BasePage.ts +++ b/playwright-tests/pages/BasePage.ts @@ -116,17 +116,13 @@ export class BasePage { } async validateURL(issPageValue: string) { - console.log(`Checking for page value: ${issPageValue}`); let pass = false; let currentUrl = this.page.url(); - console.log(`Current URL: ${currentUrl}`); pass = currentUrl.includes(issPageValue); const isBailout = currentUrl.includes('bailout-page'); if(!pass && !isBailout) { - console.log('Waiting for URL to change'); await this.waitForURLToChange(currentUrl); currentUrl = this.page.url(); - console.log(`New URL: ${currentUrl}`); } expect(currentUrl).toContain(issPageValue); } @@ -135,6 +131,6 @@ export class BasePage { await expect(async () => { const currentUrl = this.page.url(); expect(currentUrl).not.toEqual(startingUrl); - }).toPass({ timeout: 180_000 }); + }).toPass({ timeout: 60_000 }); } } \ No newline at end of file diff --git a/playwright-tests/pages/OrderConfirmationPage.ts b/playwright-tests/pages/OrderConfirmationPage.ts index e5b32e0c..8f30ad8c 100644 --- a/playwright-tests/pages/OrderConfirmationPage.ts +++ b/playwright-tests/pages/OrderConfirmationPage.ts @@ -113,11 +113,8 @@ export class OrderConfirmationPage extends BasePage { } async validateURL() { - console.log("Order confirmation validation override") - console.log(`Checking for page value: ${this.issPageValue}`); let pass = false; let currentUrl = this.page.url(); - console.log(`Current URL: ${currentUrl}`); pass = currentUrl.includes(this.issPageValue); while(!pass && currentUrl.includes('payment')) { await this.waitForURLToChange(currentUrl); @@ -126,10 +123,8 @@ export class OrderConfirmationPage extends BasePage { } const isBailout = currentUrl.includes('bailout-page'); if(!pass && !isBailout) { - console.log('Waiting for URL to change'); await this.waitForURLToChange(currentUrl); currentUrl = this.page.url(); - console.log(`New URL: ${currentUrl}`); } expect(currentUrl).toContain(this.issPageValue); }