From a414436889a90f4b13a8079cb58d8633c0d96807 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Wed, 30 Jul 2025 11:30:35 -0400 Subject: [PATCH] Commits for pipeline to run Cleans up the Afterpay payment execution flow by removing unnecessary and commented-out code related to card details population. --- playwright-tests/pages/AfterpayPage.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/playwright-tests/pages/AfterpayPage.ts b/playwright-tests/pages/AfterpayPage.ts index ec6779e60..5b0acfe1a 100644 --- a/playwright-tests/pages/AfterpayPage.ts +++ b/playwright-tests/pages/AfterpayPage.ts @@ -46,9 +46,6 @@ export class AfterpayPage extends BasePage { async executeAfterpayPayment(paymentDetails: IPaymentDetails) { await this.login(paymentDetails.password!); - - //await this.populateCardDetails(paymentDetails); - await this.confirmButton.click(); }