Removed extra logging
This commit is contained in:
parent
4059bd4a88
commit
0300d35f86
2 changed files with 0 additions and 9 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -114,11 +114,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);
|
||||
|
|
@ -127,10 +124,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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue