Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Adyen/adyen-salesforce-commerce-cloud
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8cc354192f51ccd06d1353537f73e5c14f4fc762
Choose a base ref
..
head repository: Adyen/adyen-salesforce-commerce-cloud
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8707fd1d36fee86da4b118eb160d9cbae973cf15
Choose a head ref
Showing with 3 additions and 4 deletions.
  1. +1 −1 tests/playwright/fixtures/countriesEUR/FR.spec.mjs
  2. +2 −3 tests/playwright/pages/PaymentMethodsPage.mjs
2 changes: 1 addition & 1 deletion tests/playwright/fixtures/countriesEUR/FR.spec.mjs
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@ test.describe.parallel(`${environment.name} EUR FR`, () => {
await checkoutPage.expectSuccess();
});

test.skip('Amazon Pay Express @quick', async ({ page }) => {
test('Amazon Pay Express @quick', async ({ page }) => {
redirectShopper = new RedirectShopper(page);
await checkoutPage.addProductToCart();
await checkoutPage.navigateToCart(regionsEnum.EU);
5 changes: 2 additions & 3 deletions tests/playwright/pages/PaymentMethodsPage.mjs
Original file line number Diff line number Diff line change
@@ -116,9 +116,8 @@ export default class PaymentMethodsPage {
await this.confirmPaymentChangeButton.click();
}
await this.page.waitForLoadState("networkidle", { timeout: 20000 });
this.submitButton = this.page.locator(
'input[class="a-button-input"]'
);
this.submitButton = this.page.locator('#a-autoid-0');
await this.submitButton.waitFor({ state: 'visible' });
await this.submitButton.click();
};