Skip to content

Commit b7bdd20

Browse files
[EngCom] Public Pull Requests - 2.3-develop
- merged latest code from mainline branch
2 parents e44b19c + 8222455 commit b7bdd20

File tree

64 files changed

+264
-97
lines changed

Some content is hidden

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

64 files changed

+264
-97
lines changed

app/code/Magento/Backend/Test/Mftf/Page/AdminDashboardPage.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
-->
88

99
<pages xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10-
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Page/etc/PageObject.xsd">
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/PageObject.xsd">
1111
<page name="AdminDashboardPage" url="admin/dashboard/" area="admin" module="Magento_Backend">
1212
<section name="AdminMenuSection"/>
1313
</page>

app/code/Magento/Braintree/Test/Mftf/ActionGroup/AdminOrderBraintreeFillActionGroup.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* See COPYING.txt for license details.
66
*/
77
-->
8+
89
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
910
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
10-
1111
<actionGroup name="AdminOrderBraintreeFillActionGroup">
1212
<!--Select Braintree Payment method on Admin Order Create Page-->
1313
<click stepKey="chooseBraintree" selector="{{NewOrderSection.creditCardBraintree}}"/>
@@ -39,4 +39,4 @@
3939
<wait stepKey="waitForFillCVV" time="1"/>
4040
<switchToIFrame stepKey="switchBackFromCVV"/>
4141
</actionGroup>
42-
</actionGroups>
42+
</actionGroups>

app/code/Magento/Braintree/Test/Mftf/ActionGroup/AdminRoleActionGroup.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* See COPYING.txt for license details.
66
*/
77
-->
8-
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9-
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Test/etc/actionGroupSchema.xsd">
108

9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<actionGroup name="GoToUserRoles">
1212
<click selector="#menu-magento-backend-system" stepKey="clickOnSystemIcon"/>
1313
<waitForPageLoad stepKey="waitForSystemsPageToOpen"/>
@@ -34,7 +34,6 @@
3434
<see userInput="You saved the role." stepKey="seeSuccessMessage" />
3535
</actionGroup>
3636

37-
3837
<!--Delete role-->
3938
<actionGroup name="AdminDeleteRoleActionGroup">
4039
<arguments>

app/code/Magento/Braintree/Test/Mftf/ActionGroup/AdminUserActionGroup.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* See COPYING.txt for license details.
66
*/
77
-->
8-
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9-
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Test/etc/actionGroupSchema.xsd">
108

9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<!--Go to all users-->
1212
<actionGroup name="GoToAllUsers">
1313
<click selector="{{AdminCreateUserSection.system}}" stepKey="clickOnSystemIcon"/>
@@ -39,7 +39,6 @@
3939
<see userInput="You saved the user." stepKey="seeSuccessMessage" />
4040
</actionGroup>
4141

42-
4342
<!--Delete User-->
4443
<actionGroup name="AdminDeleteNewUserActionGroup">
4544

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
11+
<section name="AdminEditRoleInfoSection">
12+
<element name="roleName" type="input" selector="#role_name"/>
13+
<element name="password" type="input" selector="#current_password"/>
14+
<element name="roleResourcesTab" type="button" selector="#role_info_tabs_account"/>
15+
<element name="backButton" type="button" selector="button[title='Back']"/>
16+
<element name="resetButton" type="button" selector="button[title='Reset']"/>
17+
<element name="deleteButton" type="button" selector="button[title='Delete Role']"/>
18+
<element name="saveButton" type="button" selector="button[title='Save Role']"/>
19+
<element name="message" type="text" selector=".modal-popup.confirm div.modal-content"/>
20+
<element name="cancel" type="button" selector=".modal-popup.confirm button.action-dismiss"/>
21+
<element name="ok" type="button" selector=".modal-popup.confirm button.action-accept" timeout="60"/>
22+
</section>
23+
</sections>
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+
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
11+
<section name="AdminEditUserRoleSection">
12+
<element name="usernameTextField" type="input" selector="#user_username"/>
13+
<element name="roleNameFilterTextField" type="input" selector="#permissionsUserRolesGrid_filter_role_name"/>
14+
<element name="searchButton" type="button" selector=".admin__data-grid-header button[title=Search]"/>
15+
<element name="resetButton" type="button" selector="button[title='Reset Filter']"/>
16+
<element name="roleNameInFirstRow" type="text" selector=".col-role_name"/>
17+
<element name="searchResultFirstRow" type="text" selector=".data-grid>tbody>tr"/>
18+
</section>
19+
</sections>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
11+
<section name="AdminEditUserSection">
12+
<element name="system" type="input" selector="#menu-magento-backend-system"/>
13+
<element name="allUsers" type="input" selector="//span[contains(text(), 'All Users')]"/>
14+
<element name="create" type="input" selector="#add"/>
15+
<element name="usernameTextField" type="input" selector="#user_username"/>
16+
<element name="firstNameTextField" type="input" selector="#user_firstname"/>
17+
<element name="lastNameTextField" type="input" selector="#user_lastname"/>
18+
<element name="emailTextField" type="input" selector="#user_email"/>
19+
<element name="passwordTextField" type="input" selector="#user_password"/>
20+
<element name="pwConfirmationTextField" type="input" selector="#user_confirmation"/>
21+
<element name="currentPasswordField" type="input" selector="#user_current_password"/>
22+
<element name="userRoleTab" type="button" selector="#page_tabs_roles_section"/>
23+
<element name="roleNameFilterTextField" type="input" selector="#permissionsUserRolesGrid_filter_role_name"/>
24+
<element name="searchButton" type="button" selector=".admin__data-grid-header button[title=Search]"/>
25+
<element name="resetButton" type="button" selector="button[title='Reset Filter']"/>
26+
<element name="roleNameInFirstRow" type="text" selector=".col-role_name"/>
27+
<element name="searchResultFirstRow" type="text" selector=".data-grid>tbody>tr"/>
28+
<element name="saveButton" type="button" selector="#save"/>
29+
</section>
30+
</sections>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
11+
<section name="AdminMenuSection">
12+
<element name="dashboard" type="button" selector="//li[@id='menu-magento-backend-dashboard']"/>
13+
<element name="sales" type="button" selector="//li[@id='menu-magento-sales-sales']"/>
14+
<element name="catalog" type="button" selector="//li[@id='menu-magento-catalog-catalog']"/>
15+
<element name="customers" type="button" selector="//li[@id='menu-magento-customer-customer']"/>
16+
<element name="marketing" type="button" selector="//li[@id='menu-magento-backend-marketing']"/>
17+
<element name="content" type="button" selector="//li[@id='menu-magento-backend-content']"/>
18+
<element name="reports" type="button" selector="//li[@id='menu-magento-reports-report']"/>
19+
<element name="stores" type="button" selector="//li[@id='menu-magento-backend-stores']"/>
20+
<element name="system" type="button" selector="//li[@id='menu-magento-backend-system']"/>
21+
<element name="findPartners" type="button" selector="//li[@id='menu-magento-marketplace-partners']"/>
22+
</section>
23+
</sections>
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+
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
11+
<section name="AdminRoleGridSection">
12+
<element name="idFilterTextField" type="input" selector="#roleGrid_filter_role_id"/>
13+
<element name="roleNameFilterTextField" type="input" selector="#roleGrid_filter_role_name"/>
14+
<element name="searchButton" type="button" selector=".admin__data-grid-header button[title=Search]"/>
15+
<element name="resetButton" type="button" selector="button[title='Reset Filter']"/>
16+
<element name="roleNameInFirstRow" type="text" selector=".col-role_name"/>
17+
<element name="searchResultFirstRow" type="text" selector=".data-grid>tbody>tr"/>
18+
</section>
19+
</sections>

app/code/Magento/Braintree/Test/Mftf/Section/BraintreeConfiguraionSection.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* See COPYING.txt for license details.
66
*/
77
-->
8+
89
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
910
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
1011
<section name="BraintreeConfiguraionSection">
@@ -30,6 +31,5 @@
3031
<element name="actionAuthorize" type="text" selector="//select[@id='payment_us_braintree_section_braintree_braintree_paypal_payment_action']/option[text()='Authorize']"/>
3132
<element name="save" type="button" selector="//span[text()='Save Config']"/>
3233
<element name="successfulMessage" type="text" selector="//*[@data-ui-id='messages-message-success']"/>
33-
3434
</section>
35-
</sections>
35+
</sections>

app/code/Magento/Braintree/Test/Mftf/Section/ConfigurationPaymentSection.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
11-
<section name="ConfigurationPaymentSection">
11+
<section name="ConfigurationPaymentSection">
1212
<element name="configureButton" type="button" selector="//button[@id='payment_us_braintree_section_braintree-head']"/>
1313
</section>
1414
</sections>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
11+
<section name="StoresSubmenuSection">
12+
<element name="configuration" type="button" selector="//li[@id='menu-magento-backend-stores']//li[@data-ui-id='menu-magento-config-system-config']"/>
13+
</section>
14+
</sections>

app/code/Magento/Catalog/Test/Mftf/ActionGroup/CreateNewProductActionGroup.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
* See COPYING.txt for license details.
66
*/
77
-->
8+
89
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
910
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
10-
<actionGroup name="CreateNewProductActionGroup">
11-
11+
<actionGroup name="CreateNewProductActionGroup">
1212
<click stepKey="openCatalog" selector="{{AdminMenuSection.catalog}}"/>
1313
<waitForPageLoad stepKey="waitForCatalogSubmenu" time="5"/>
1414
<click stepKey="clickOnProducts" selector="{{CatalogSubmenuSection.products}}"/>
@@ -22,4 +22,4 @@
2222
<waitForElementVisible stepKey="waitForSuccessfullyCreatedMessage" selector="{{NewProductPageSection.createdSuccessMessage}}" time="10"/>
2323
<waitForPageLoad stepKey="waitForPageLoad" time="10"/>
2424
</actionGroup>
25-
</actionGroups>
25+
</actionGroups>

app/code/Magento/Catalog/Test/Mftf/ActionGroup/DeleteProductActionGroup.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* See COPYING.txt for license details.
66
*/
77
-->
8+
89
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
910
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1011
<actionGroup name="DeleteProductActionGroup">
@@ -23,4 +24,4 @@
2324
<click stepKey="clickOnOk" selector="{{ProductsPageSection.ok}}"/>
2425
<waitForElementVisible stepKey="waitForSuccessfullyDeletedMessage" selector="{{ProductsPageSection.deletedSuccessMessage}}" time="10"/>
2526
</actionGroup>
26-
</actionGroups>
27+
</actionGroups>

app/code/Magento/Catalog/Test/Mftf/Data/CatalogPriceData.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
-->
88

99
<entities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10-
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/DataGenerator/etc/dataProfileSchema.xsd">
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:DataGenerator/etc/dataProfileSchema.xsd">
1111
<entity name="CatalogPriceScopeWebsite" type="catalog_price_config_state">
1212
<requiredEntity type="scope">scopeWebsite</requiredEntity>
1313
<requiredEntity type="default_product_price">defaultProductPrice</requiredEntity>
@@ -29,5 +29,4 @@
2929
<entity name="defaultProductPrice" type="default_product_price">
3030
<data key="value"/>
3131
</entity>
32-
3332
</entities>

app/code/Magento/Catalog/Test/Mftf/Data/NewProductData.xml

-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@
1313
<data key="Price">100</data>
1414
<data key="Quantity">100</data>
1515
</entity>
16-
1716
</entities>

app/code/Magento/Catalog/Test/Mftf/Data/TierPriceData.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
-->
88

99
<entities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10-
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/DataGenerator/etc/dataProfileSchema.xsd">
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:DataGenerator/etc/dataProfileSchema.xsd">
1111
<entity name="testDataTierPrice" type="data">
1212
<data key="goldenPrice1">$676.50</data>
1313
<data key="goldenPrice2">$615.00</data>

app/code/Magento/Catalog/Test/Mftf/Metadata/catalog_price-meta.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
* See COPYING.txt for license details.
66
*/
77
-->
8+
89
<operations xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9-
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/DataGenerator/etc/dataOperation.xsd">
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:DataGenerator/etc/dataOperation.xsd">
1011
<operation name="CatalogPriceConfigState" dataType="catalog_price_config_state" type="create" auth="adminFormKey" url="/admin/system_config/save/section/catalog/" method="POST">
1112
<object key="groups" dataType="catalog_price_config_state">
1213
<object key="price" dataType="catalog_price_config_state">
@@ -21,4 +22,4 @@
2122
</object>
2223
</object>
2324
</operation>
24-
</operations>
25+
</operations>

app/code/Magento/Catalog/Test/Mftf/Section/ProductsPageSection.xml

-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@
1515
<element name="delete" type="button" selector="//*[contains(@class,'admin__data-grid-header-row row row-gutter')]//*[text()='Delete']"/>
1616
<element name="ok" type="button" selector="//button[@data-role='action']//span[text()='OK']"/>
1717
<element name="deletedSuccessMessage" type="button" selector="//*[@class='message message-success success']"/>
18-
1918
</section>
2019
</sections>

app/code/Magento/Catalog/Test/Mftf/Section/StorefrontMiniCartSection.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
-->
88

99
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10-
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Page/etc/SectionObject.xsd">
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
1111
<section name="StorefrontMiniCartSection">
1212
<element name="quantity" type="button" selector="span.counter-number"/>
1313
<element name="show" type="button" selector="a.showcart"/>

app/code/Magento/Catalog/Test/Mftf/Test/AdminFilteringCategoryProductsUsingScopeSelectorTest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
1111
<test name="AdminFilteringCategoryProductsUsingScopeSelectorTest">
1212
<annotations>
13-
<features value="Catalog"/>
13+
<stories value="Filtering Category Products"/>
1414
<title value="Filtering Category Products using scope selector"/>
1515
<description value="Filtering Category Products using scope selector"/>
1616
<severity value="MAJOR"/>

app/code/Magento/Catalog/Test/Mftf/Test/TieredPricingAndQuantityIncrementsWorkWithDecimalinventoryTest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
-->
88

99
<tests xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10-
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Test/etc/testSchema.xsd">
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
1111
<test name="TieredPricingAndQuantityIncrementsWorkWithDecimalinventoryTest">
1212
<annotations>
1313
<features value="Catalog"/>
@@ -84,4 +84,4 @@
8484
<click selector="{{CheckoutCartProductSection.updateShoppingCartButton}}" stepKey="clickOnUpdateShoppingCartButton"/>
8585
<seeInField userInput="5.5" selector="{{CheckoutCartProductSection.ProductQuantityByName(('$$createPreReqSimpleProduct.name$$'))}}" stepKey="seeInField2"/>
8686
</test>
87-
</tests>
87+
</tests>

app/code/Magento/Checkout/Test/Mftf/ActionGroup/IdentityOfDefaultBillingAndShippingAddressActionGroup.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* See COPYING.txt for license details.
66
*/
77
-->
8-
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9-
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Test/etc/actionGroupSchema.xsd">
108

9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<!--Assert That Shipping And Billing Address are the same-->
1212
<actionGroup name="AssertThatShippingAndBillingAddressTheSame">
1313
<!--Get shipping and billing addresses-->
@@ -18,5 +18,4 @@
1818
<see userInput="Billing Address" stepKey="seeBillingAddress"/>
1919
<assertEquals stepKey="assert" actual="$billingAddr" expected="$shippingAddr"/>
2020
</actionGroup>
21-
2221
</actionGroups>

app/code/Magento/Checkout/Test/Mftf/ActionGroup/StorefrontShippmentFromActionGroup.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
-->
88

99
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10-
xsi:noNamespaceSchemaLocation="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Test/etc/actionGroupSchema.xsd">
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
1111
<!--Fill shipment form for free shipping-->
1212
<actionGroup name="ShipmentFormFreeShippingActionGroup">
1313
<fillField selector="{{CheckoutShippingSection.email}}" userInput="{{CustomerEntityOne.email}}" stepKey="setCustomerEmail"/>
@@ -26,4 +26,4 @@
2626
<waitForPageLoad time="5" stepKey="waitForReviewAndPaymentsPageIsLoaded"/>
2727
<seeInCurrentUrl url="payment" stepKey="reviewAndPaymentIsShown"/>
2828
</actionGroup>
29-
</actionGroups>
29+
</actionGroups>

0 commit comments

Comments
 (0)