From 05a8219e7b5f1d98b8dfbd8cbca00caf4f233df6 Mon Sep 17 00:00:00 2001 From: Tamara Date: Mon, 23 Dec 2024 12:12:11 +0100 Subject: [PATCH] Fix the test - Payment methods should be updated when the billing address is changed --- .../pageObjects/plugin/ShippingDetails.page.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/e2e/adyen-integration-tools-tests/projects/shopware/pageObjects/plugin/ShippingDetails.page.js b/.github/workflows/e2e/adyen-integration-tools-tests/projects/shopware/pageObjects/plugin/ShippingDetails.page.js index 24813ad8..5b587c1c 100644 --- a/.github/workflows/e2e/adyen-integration-tools-tests/projects/shopware/pageObjects/plugin/ShippingDetails.page.js +++ b/.github/workflows/e2e/adyen-integration-tools-tests/projects/shopware/pageObjects/plugin/ShippingDetails.page.js @@ -19,11 +19,11 @@ export class ShippingDetailsPage extends SPRBasePage { this.editSalutationDropDown = this.editAddressEditorWrapper.locator("#billing-addresspersonalSalutation"); this.editFirstNameField = this.editAddressEditorWrapper.locator("#billing-addresspersonalFirstName"); this.editLastNameField = this.editAddressEditorWrapper.locator("#billing-addresspersonalLastName"); - this.editAddressField = this.editAddressEditorWrapper.locator("#billing-addressAddressStreet"); - this.editPostCodeField = this.editAddressEditorWrapper.locator("#billing-addressAddressZipcode"); - this.editCityField = this.editAddressEditorWrapper.locator("#billing-addressAddressCity"); - this.editCountrySelectDropdown = this.editAddressEditorWrapper.locator("#billing-addressAddressCountry"); - this.editStateSelectDropDown = this.editAddressEditorWrapper.locator("#billing-addressAddressCountryState"); + this.editAddressField = this.editAddressEditorWrapper.locator("#billing-edit-addressAddressStreet"); + this.editPostCodeField = this.editAddressEditorWrapper.locator("#billing-edit-addressAddressZipcode"); + this.editCityField = this.editAddressEditorWrapper.locator("#billing-edit-addressAddressCity"); + this.editCountrySelectDropdown = this.editAddressEditorWrapper.locator("#billing-edit-addressAddressCountry"); + this.editStateSelectDropDown = this.editAddressEditorWrapper.locator("#billing-edit-addressAddressCountryState"); this.editSaveAddressButton = this.editAddressEditorWrapper.locator("button[type='submit']");