-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔃 [Magento Community Engineering] Community Contributions - 2.4-develop
Accepted Community Pull Requests: - #31321: Add missing "VAT Number" field to customer registration page (by @vovayatsyuk) - #31603: [MFTF] Adding AdminGoToOrderStatusPageActionGroup (by @AnnaAPak) - #31601: [MFTF] Updating with AdminClickInsertWidgetActionGroup (by @AnnaAPak) - #31394: [MFTF] Refactoring AdminCheckingCreditMemoTotalsTest (by @AnnaAPak) Fixed GitHub Issues: - #31326: [Issue] Add missing "VAT Number" field to customer registration page (reported by @m2-assistant[bot]) has been fixed in #31321 by @vovayatsyuk in 2.4-develop branch Related commits: 1. e5444ad 2. 01f3185 3. d01133d 4. 13b966a 5. ecc30d5 6. 837a48a 7. 8b4e8b5 8. 93a0469 9. 1f9802d 10. 6bd52c9 11. a24dce4 12. c9bcf3d 13. 71428b5 - #31624: [Issue] [MFTF] Adding AdminGoToOrderStatusPageActionGroup (reported by @m2-assistant[bot]) has been fixed in #31603 by @AnnaAPak in 2.4-develop branch Related commits: 1. 5d84e2a 2. d766016 3. b628917 - #31626: [Issue] [MFTF] Updating with AdminClickInsertWidgetActionGroup (reported by @m2-assistant[bot]) has been fixed in #31601 by @AnnaAPak in 2.4-develop branch Related commits: 1. 0693f46 - #31403: [Issue] [MFTF] Refactoring AdminCheckingCreditMemoTotalsTest (reported by @m2-assistant[bot]) has been fixed in #31394 by @AnnaAPak in 2.4-develop branch Related commits: 1. cfa15e1
- Loading branch information
Showing
25 changed files
with
168 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
...Multishipping/Test/Mftf/Test/StoreFrontCheckVatIdAtAccountCreateWithMultishipmentTest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
|
||
<tests xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd"> | ||
<test name="StoreFrontCheckVatIdAtAccountCreateWithMultishipmentTest"> | ||
<annotations> | ||
<features value="Multishipment"/> | ||
<stories value="Checking vat id field at account create page with 'Check Out with Multiple Addresses'"/> | ||
<title value="Checking vat id field at account create page with 'Check Out with Multiple Addresses'"/> | ||
<description value="'VAT Number' field should be available at create account page if 'Show VAT Number on Storefront' is Yes"/> | ||
<severity value="MAJOR"/> | ||
<testCaseId value="MC-40397"/> | ||
<group value="Multishipment"/> | ||
</annotations> | ||
<before> | ||
<magentoCLI command="config:set customer/create_account/vat_frontend_visibility 1" stepKey="showVatNumberOnStorefrontYes"/> | ||
<createData entity="SimpleSubCategory" stepKey="category"/> | ||
<createData entity="SimpleProduct" stepKey="product"> | ||
<requiredEntity createDataKey="category"/> | ||
</createData> | ||
</before> | ||
<after> | ||
<magentoCLI command="config:set customer/create_account/vat_frontend_visibility 0" stepKey="showVatNumberOnStorefrontNo"/> | ||
<actionGroup ref="CliCacheFlushActionGroup" stepKey="flushCacheAfter"> | ||
<argument name="tags" value="config"/> | ||
</actionGroup> | ||
<deleteData createDataKey="category" stepKey="deleteCategory"/> | ||
<deleteData createDataKey="product" stepKey="deleteproduct"/> | ||
</after> | ||
<!-- Add product to the cart --> | ||
<amOnPage url="$$product.name$$.html" stepKey="goToProductPage"/> | ||
<actionGroup ref="AddToCartFromStorefrontProductPageActionGroup" stepKey="addProductToCart"> | ||
<argument name="productName" value="$$product.name$$"/> | ||
</actionGroup> | ||
<!-- Check Out with Multiple Addresses --> | ||
<actionGroup ref="StorefrontOpenCartFromMinicartActionGroup" stepKey="openCart"/> | ||
<waitForElementVisible selector="{{MultishippingSection.shippingMultipleCheckout}}" stepKey="waitMultipleAddressShippingButton"/> | ||
<click selector="{{MultishippingSection.shippingMultipleCheckout}}" stepKey="clickToMultipleAddressShippingButton"/> | ||
<!--Create an account--> | ||
<waitForElementVisible selector="{{StorefrontCustomerSignInPopupFormSection.createAnAccount}}" stepKey="waitCreateAnAccountButton"/> | ||
<click selector="{{StorefrontCustomerSignInPopupFormSection.createAnAccount}}" stepKey="clickOnCreateAnAccountButton"/> | ||
<waitForPageLoad stepKey="waitForCreateAccountPageToLoad"/> | ||
<!--Check the VAT Number field--> | ||
<seeElement selector="{{StorefrontCustomerAddressSection.vatId}}" stepKey="assertVatIdField"/> | ||
</test> | ||
</tests> |
Oops, something went wrong.