Skip to content

Commit edda11c

Browse files
🔃 [Magento Community Engineering] Community Contributions - 2.4-develop latest changes
Accepted Community Pull Requests: - #30662: Add path verification to Mediagallery uploader plugin (by @Nazar65) - #29692: Allow ignored columns for mview to be specified at the subscription level (by @aligent-lturner) - #30614: Prevent multiple quotations of the same word (by @denchev) - #30421: Customer Attributes Options with option group fixed (by @nitishcs6) - #30529: [MFTF] Add StorefrontClickProceedToCheckoutActionGroup (by @Usik2203) - #30779: [MFTF] Added AdminClickGetShippingMethodsAndRatesActionGroup and AdminSelectFixedShippingMethodActionGroup (by @Usik2203) Fixed GitHub Issues: - #30649: Cannot Import Products when Enable Old Media Gallery is set to No (reported by @bernieu2) has been fixed in #30662 by @Nazar65 in 2.4-develop branch Related commits: 1. 72cf701 2. 011a443 3. 04400b0 - #30243: [Issue] Allow ignored columns for mview to be specified at the subscription level (reported by @m2-assistant[bot]) has been fixed in #29692 by @aligent-lturner in 2.4-develop branch Related commits: 1. 2c13e0c 2. d1983b4 3. d58bed1 4. 5099ab7 5. 0417ffc 6. 8c754b2 7. 1d3c42d - #30104: Elastic Search issue with Synonyms (reported by @soumiktuban) has been fixed in #30614 by @denchev in 2.4-develop branch Related commits: 1. b21693a 2. c36f29b 3. b75440e 4. 64cb493 - #30422: [Issue] Customer Attributes Options with option group fixed (reported by @m2-assistant[bot]) has been fixed in #30421 by @nitishcs6 in 2.4-develop branch Related commits: 1. b5a64c7 2. 57a4510 3. 9dc798f 4. 55f6ce9 5. d22f7f1 6. 6eff507 - #30926: [Issue] [MFTF] Add StorefrontClickProceedToCheckoutActionGroup (reported by @m2-assistant[bot]) has been fixed in #30529 by @Usik2203 in 2.4-develop branch Related commits: 1. 5b8b252 2. 8987cfa 3. 16f136d 4. d6ae953 5. 98e2d0f 6. daf5302 7. 482db88 8. c6fe294 9. 868e856 10. 29a4402 - #30782: [Issue] [MFTF] Added AdminClickGetShippingMethodsAndRatesActionGroup and AdminSelectFixedShippingMethodActionGroup (reported by @m2-assistant[bot]) has been fixed in #30779 by @Usik2203 in 2.4-develop branch Related commits: 1. c62a878 2. df9280b 3. 719a6bb
2 parents 8c95f07 + ee96ab4 commit edda11c

File tree

44 files changed

+372
-92
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+372
-92
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11+
<actionGroup name="StorefrontClickProceedToCheckoutActionGroup">
12+
<annotations>
13+
<description>Click Proceed to Checkout button.</description>
14+
</annotations>
15+
16+
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="goToCheckout"/>
17+
<waitForPageLoad stepKey="waitForPageToLoad"/>
18+
</actionGroup>
19+
</actionGroups>

app/code/Magento/Checkout/Test/Mftf/Test/OnePageCheckoutAsCustomerUsingDefaultAddressTest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
<actionGroup ref="FillShippingZipForm" stepKey="fillShippingZipForm">
5555
<argument name="address" value="US_Address_CA"/>
5656
</actionGroup>
57-
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="clickProceedToCheckout"/>
58-
<waitForPageLoad stepKey="waitForProceedToCheckout"/>
57+
<actionGroup ref="StorefrontClickProceedToCheckoutActionGroup" stepKey="clickProceedToCheckout"/>
58+
<comment userInput="Adding the comment to replace waitForProceedToCheckout action for preserving Backward Compatibility" stepKey="waitForProceedToCheckout"/>
5959

6060

6161
<!-- Login as customer on checkout page -->

app/code/Magento/Checkout/Test/Mftf/Test/OnePageCheckoutAsCustomerUsingNewAddressTest.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@
5454
<actionGroup ref="FillShippingZipForm" stepKey="fillShippingZipForm">
5555
<argument name="address" value="US_Address_CA"/>
5656
</actionGroup>
57-
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="clickProceedToCheckout"/>
58-
<waitForPageLoad stepKey="waitForProceedToCheckout"/>
59-
57+
<actionGroup ref="StorefrontClickProceedToCheckoutActionGroup" stepKey="clickProceedToCheckout"/>
58+
<comment userInput="Adding the comment to replace waitForProceedToCheckout action for preserving Backward Compatibility" stepKey="waitForProceedToCheckout"/>
6059
<!-- Login using Sign In link from checkout page -->
6160
<actionGroup ref="LoginAsCustomerUsingSignInLinkActionGroup" stepKey="customerLogin">
6261
<argument name="customer" value="$$createCustomer$$"/>

app/code/Magento/Checkout/Test/Mftf/Test/OnePageCheckoutAsCustomerUsingNonDefaultAddressTest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
<actionGroup ref="FillShippingZipForm" stepKey="fillShippingZipForm">
5555
<argument name="address" value="US_Address_CA"/>
5656
</actionGroup>
57-
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="clickProceedToCheckout"/>
58-
<waitForPageLoad stepKey="waitForProceedToCheckout"/>
57+
<actionGroup ref="StorefrontClickProceedToCheckoutActionGroup" stepKey="clickProceedToCheckout"/>
58+
<comment userInput="Adding the comment to replace waitForProceedToCheckout action for preserving Backward Compatibility" stepKey="waitForProceedToCheckout"/>
5959

6060
<!-- Login as customer on checkout page -->
6161
<actionGroup ref="LoginAsCustomerOnCheckoutPageActionGroup" stepKey="customerLogin">

app/code/Magento/Checkout/Test/Mftf/Test/OnePageCheckoutAsCustomerUsingNonExistentCustomerGroupTest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
<actionGroup ref="FillShippingZipForm" stepKey="fillShippingZipForm">
6767
<argument name="address" value="US_Address_CA"/>
6868
</actionGroup>
69-
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="clickProceedToCheckout"/>
70-
<waitForPageLoad stepKey="waitForProceedToCheckout"/>
69+
<actionGroup ref="StorefrontClickProceedToCheckoutActionGroup" stepKey="clickProceedToCheckout"/>
70+
<comment userInput="Adding the comment to replace waitForProceedToCheckout action for preserving Backward Compatibility" stepKey="waitForProceedToCheckout"/>
7171

7272
<!-- Check that error does not appear and shipping methods are available to select -->
7373
<dontSee selector="{{CheckoutCartMessageSection.errorMessage}}" userInput="No such entity with id = $$createCustomerGroup.id$$" stepKey="assertErrorMessage"/>

app/code/Magento/Checkout/Test/Mftf/Test/OnePageCheckoutUsingSignInLinkTest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
<actionGroup ref="FillShippingZipForm" stepKey="fillShippingZipForm">
5555
<argument name="address" value="US_Address_CA"/>
5656
</actionGroup>
57-
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="clickProceedToCheckout"/>
58-
<waitForPageLoad stepKey="waitForProceedToCheckout"/>
57+
<actionGroup ref="StorefrontClickProceedToCheckoutActionGroup" stepKey="clickProceedToCheckout"/>
58+
<comment userInput="Adding the comment to replace waitForProceedToCheckout action for preserving Backward Compatibility" stepKey="waitForProceedToCheckout"/>
5959

6060
<!-- Login using Sign In link from checkout page -->
6161
<actionGroup ref="LoginAsCustomerUsingSignInLinkActionGroup" stepKey="customerLogin">

app/code/Magento/Checkout/Test/Mftf/Test/OnePageCheckoutWithAllProductTypesTest.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,8 @@
168168
<actionGroup ref="FillShippingZipForm" stepKey="fillShippingZipForm">
169169
<argument name="address" value="US_Address_CA"/>
170170
</actionGroup>
171-
172-
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="clickProceedToCheckout"/>
173-
<waitForPageLoad stepKey="waitForProceedToCheckout"/>
171+
<actionGroup ref="StorefrontClickProceedToCheckoutActionGroup" stepKey="clickProceedToCheckout"/>
172+
<comment userInput="Adding the comment to replace waitForProceedToCheckout action for preserving Backward Compatibility" stepKey="waitForProceedToCheckout"/>
174173
<actionGroup ref="FillCustomerSignInPopupFormActionGroup" stepKey="fillCustomerSignInPopupForm">
175174
<argument name="customer" value="$$createCustomer$$"/>
176175
</actionGroup>

app/code/Magento/Checkout/Test/Mftf/Test/StorefrontCheckoutWithDifferentShippingAndBillingAddressAndCreateCustomerAfterCheckoutTest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050

5151
<!-- Fill the Estimate Shipping and Tax section -->
5252
<actionGroup ref="CheckoutFillEstimateShippingAndTaxActionGroup" stepKey="fillEstimateShippingAndTaxFields"/>
53-
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="goToCheckout"/>
54-
<waitForPageLoad stepKey="waitForPageToLoad"/>
53+
<actionGroup ref="StorefrontClickProceedToCheckoutActionGroup" stepKey="goToCheckout"/>
54+
<comment userInput="Adding the comment to replace waitForPageToLoad action for preserving Backward Compatibility" stepKey="waitForPageToLoad"/>
5555

5656
<!-- Fill the guest form -->
5757
<actionGroup ref="FillGuestCheckoutShippingAddressFormActionGroup" stepKey="fillGuestShippingAddress">

app/code/Magento/Checkout/Test/Mftf/Test/StorefrontCheckoutWithDifferentShippingAndBillingAddressAndProductWithTierPricesTest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565

6666
<!-- Fill the Estimate Shipping and Tax section -->
6767
<actionGroup ref="CheckoutFillEstimateShippingAndTaxActionGroup" stepKey="fillEstimateShippingAndTaxFields"/>
68-
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="goToCheckout"/>
69-
<waitForPageLoad stepKey="waitForPageToLoad"/>
68+
<actionGroup ref="StorefrontClickProceedToCheckoutActionGroup" stepKey="goToCheckout"/>
69+
<comment userInput="Adding the comment to replace waitForPageToLoad action for preserving Backward Compatibility" stepKey="waitForPageToLoad"/>
7070

7171
<!-- Fill the guest form -->
7272
<actionGroup ref="FillGuestCheckoutShippingAddressWithCountryActionGroup" stepKey="fillGuestForm">

app/code/Magento/Checkout/Test/Mftf/Test/StorefrontCheckoutWithDifferentShippingAndBillingAddressAndRegisterCustomerAfterCheckoutTest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252

5353
<!-- Fill the Estimate Shipping and Tax section -->
5454
<actionGroup ref="CheckoutFillEstimateShippingAndTaxActionGroup" stepKey="fillEstimateShippingAndTaxFields"/>
55-
<click selector="{{CheckoutCartSummarySection.proceedToCheckout}}" stepKey="goToCheckout"/>
56-
<waitForPageLoad stepKey="waitForPageToLoad"/>
55+
<actionGroup ref="StorefrontClickProceedToCheckoutActionGroup" stepKey="goToCheckout"/>
56+
<comment userInput="Adding the comment to replace waitForPageToLoad action for preserving Backward Compatibility" stepKey="waitForPageToLoad"/>
5757

5858
<!-- Fill the guest form -->
5959
<actionGroup ref="FillGuestCheckoutShippingAddressFormActionGroup" stepKey="fillGuestForm">

0 commit comments

Comments
 (0)