Merge pull request #1301 from Safelite/feature/uboppa/INSR-8668

Feature/uboppa/insr 8668
This commit is contained in:
Udayboppasafelite 2026-07-15 10:49:51 -04:00 committed by GitHub
commit 8a0f3d11f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View file

@ -20,13 +20,13 @@ variables:
# - group: Digital-Infrastructure
# - group: ISS-BuildBranches
- group: SafelitePlaywright
- group: DigitalCommercialPlaywrightAutomation
- group: ISSNextgenAutomationPlaywright
- name: dockerImageName
value: 'playwright-tests'
- name: imageTag
value: '$(Build.BuildId)'
- name: totalShards
value: 4
value: 8
- name: IS_REGRESSION
value: 'true'
- name: JIRA_BOARD_ID

View file

@ -20,7 +20,8 @@ export class PaypalPage extends BasePage {
name: "Log In",
exact: true,
});
this.payButton = page.getByRole("button", { name: "Pay $" });
// this.payButton = page.getByRole("button", { name: "Pay $" });
this.payButton = page.getByRole("button", { exact: true, name: "Pay" });
}
async completePaypalPurchase(paymentDetailsAdyen: IPaymentDetailsAdyen) {