-
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.
🔃 [EngCom] Public Pull Requests - 2.3-develop
Accepted Public Pull Requests: - #19198: [2.3] Made logo clickable on home page (by @gwharton) - #19696: Add EngCom Slack info to README and formatting (by @lorikrell) - #19493: Fix issue 19492 - Catalog Product - Customizable Options label alignment issue (by @speedy008) - #19684: Correct spelling (by @ravi-chandra3197) - #19673: fix: immediately return value (by @DanielRuf) - #19633: Issue resolved #19607. Page Not Found when deleting Attribute Set #19614 (by @cedcommerce) - #19640: Fixed icon alignment: Frontend Component theme sort by arrow icon vertical alignment issue. #19639 (by @suryakant-krish) - #18124: Clean code (by @hryvinskyi) - #19038: #18990: Shipping address is not validated in checkout… (by @StasKozar) Fixed GitHub Issues: - #19142: Home page store loge should be clickable to reload page (reported by @tomekjordan) has been fixed in #19198 by @gwharton in 2.3-develop branch Related commits: 1. f6a6d11 2. 99c4d00 - #19492: Catalog Product - Customizable Options label alignment issue (reported by @speedy008) has been fixed in #19493 by @speedy008 in 2.3-develop branch Related commits: 1. f63ed89 - #19607: Magento 2.3. Page Not Found when deleting Attribute Set (reported by @Rjgoolsby) has been fixed in #19633 by @cedcommerce in 2.3-develop branch Related commits: 1. 144b028 2. 21f7afa - #19639: Frontend Component theme sort by arrow icon vertical alignment issue. (reported by @suryakant-krish) has been fixed in #19640 by @suryakant-krish in 2.3-develop branch Related commits: 1. e567510 - #18990: Shipping address is not validated in checkout when proceeding step as logged in user with default shipping address (reported by @DanieliMi) has been fixed in #19038 by @StasKozar in 2.3-develop branch Related commits: 1. 43e2c4d 2. b545997 3. 66c1155
- Loading branch information
Showing
92 changed files
with
486 additions
and
244 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
55 changes: 55 additions & 0 deletions
55
app/code/Magento/Checkout/Test/Mftf/Test/StorefrontCustomerCheckoutWithoutRegionTest.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,55 @@ | ||
<?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="StorefrontCustomerCheckoutWithoutRegionTest"> | ||
<annotations> | ||
<features value="Checkout"/> | ||
<stories value="Checkout via the Admin"/> | ||
<title value="Shipping address is not validated in checkout when proceeding step as logged in user with default shipping address"/> | ||
<description value="Shouldn't be able to place an order as a customer without state if it's required."/> | ||
<severity value="CRITICAL"/> | ||
<testCaseId value="#"/> | ||
<group value="checkout"/> | ||
</annotations> | ||
<before> | ||
<createData entity="SimpleSubCategory" stepKey="createCategory"/> | ||
<createData entity="SimpleProduct" stepKey="createProduct"> | ||
<requiredEntity createDataKey="createCategory"/> | ||
</createData> | ||
<createData entity="Simple_GB_Customer" stepKey="createCustomer"/> | ||
<actionGroup stepKey="loginToAdminPanel" ref="LoginAsAdmin"/> | ||
<actionGroup ref="SelectCountriesWithRequiredRegion" stepKey="setCustomCountryWithRequiredRegion"> | ||
<argument name="countries" value="CustomCountryWithRequiredRegion"/> | ||
</actionGroup> | ||
</before> | ||
<after> | ||
<actionGroup ref="SelectCountriesWithRequiredRegion" stepKey="setDefaultCountriesWithRequiredRegion"> | ||
<argument name="countries" value="DefaultCountriesWithRequiredRegions"/> | ||
</actionGroup> | ||
<actionGroup ref="logout" stepKey="logout"/> | ||
<deleteData createDataKey="createProduct" stepKey="deleteProduct"/> | ||
<deleteData createDataKey="createCategory" stepKey="deleteCategory"/> | ||
<deleteData createDataKey="createCustomer" stepKey="deleteCustomer"/> | ||
</after> | ||
|
||
<actionGroup ref="LoginToStorefrontActionGroup" stepKey="customerLogin"> | ||
<argument name="Customer" value="$$createCustomer$$" /> | ||
</actionGroup> | ||
|
||
<actionGroup ref="AddSimpleProductToCart" stepKey="addProductToCart"> | ||
<argument name="product" value="$$createProduct$$"/> | ||
</actionGroup> | ||
|
||
<actionGroup ref="GoToCheckoutFromMinicartActionGroup" stepKey="navigateToCheckoutPage"/> | ||
|
||
<click selector="{{CheckoutShippingSection.next}}" stepKey="clickNextButton"/> | ||
<see selector="{{StorefrontMessagesSection.error}}" userInput='Please specify a regionId in shipping address.' stepKey="seeErrorMessages"/> | ||
</test> | ||
</tests> |
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
Oops, something went wrong.