Skip to content

Commit e3e9f70

Browse files
merge magento/2.4-develop into magento-honey-badgers/MC-32120
2 parents 162b509 + b423851 commit e3e9f70

File tree

67 files changed

+462
-313
lines changed

Some content is hidden

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

67 files changed

+462
-313
lines changed

app/code/Magento/Braintree/Test/Mftf/Test/CretateAdminOrderWithOnlinePaymentIncludingTaxAndDiscountTest.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
</after>
7575

7676
<!-- Create a cart price rule with 10% discount for whole cart -->
77-
<click selector="{{AdminMenuSection.marketing}}" stepKey="clickOnMarketing" />
77+
<click selector="{{AdminMenuSection.marketing}}" stepKey="clickOnMarketing"/>
7878
<waitForPageLoad stepKey="waitForMarketing"/>
7979
<click selector="{{CartPriceRulesSubmenuSection.cartPriceRules}}" stepKey="clickOnCartPriceRules"/>
8080
<waitForPageLoad stepKey="waitForCartPriceRules"/>
@@ -93,7 +93,9 @@
9393
<actionGroup ref="ChangeShippingTaxClassActionGroup" stepKey="changeShippingTaxClass"/>
9494

9595
<!--Adding Special price to product-->
96-
<amOnPage url="{{AdminProductEditPage.url($$simpleProduct.id$$)}}" stepKey="openAdminProductEditPage"/>
96+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="openAdminProductEditPage">
97+
<argument name="productId" value="$$simpleProduct.id$$"/>
98+
</actionGroup>
9799
<actionGroup ref="AddSpecialPriceToProductActionGroup" stepKey="addSpecialPrice"/>
98100
<actionGroup ref="SaveProductFormActionGroup" stepKey="saveProductForm"/>
99101

app/code/Magento/Bundle/Test/Mftf/Test/AdminAddBundleProductToCartFromWishListPageTest.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,16 @@
5050
<requiredEntity createDataKey="bundleOption"/>
5151
<requiredEntity createDataKey="createSimpleProduct2"/>
5252
</createData>
53-
<amOnPage url="{{AdminProductEditPage.url($$createProduct.id$$)}}" stepKey="goToProductEditPage"/>
53+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToProductEditPage">
54+
<argument name="productId" value="$$createProduct.id$$"/>
55+
</actionGroup>
5456
<actionGroup ref="SaveProductFormActionGroup" stepKey="saveProduct"/>
5557
</before>
5658
<after>
5759
<!-- Delete created data -->
5860
<comment userInput="Delete created data" stepKey="commentDeleteCreatedData"/>
5961
<deleteData createDataKey="createCustomerViaTheStorefront" stepKey="deleteCustomerViaTheStorefront"/>
60-
<deleteData createDataKey="createProduct" stepKey="deleteProduct" />
62+
<deleteData createDataKey="createProduct" stepKey="deleteProduct"/>
6163
<!-- Log out -->
6264
<comment userInput="Log out" stepKey="commentLogOut"/>
6365
<actionGroup ref="AdminLogoutActionGroup" stepKey="logout"/>
@@ -74,8 +76,8 @@
7476
<actionGroup ref="StorefrontCustomerAddProductToWishlistActionGroup" stepKey="addToWishlistProduct">
7577
<argument name="productVar" value="$$createProduct$$"/>
7678
</actionGroup>
77-
<moveMouseOver selector="{{StorefrontCategoryProductSection.ProductInfoByName($$createProduct.name$$)}}" stepKey="moveMouseOverProduct" />
78-
<click selector="{{StorefrontCategoryProductSection.ProductAddToCartByName($$createProduct.name$$)}}" stepKey="clickAddToCart" />
79+
<moveMouseOver selector="{{StorefrontCategoryProductSection.ProductInfoByName($$createProduct.name$$)}}" stepKey="moveMouseOverProduct"/>
80+
<click selector="{{StorefrontCategoryProductSection.ProductAddToCartByName($$createProduct.name$$)}}" stepKey="clickAddToCart"/>
7981
<waitForPageLoad stepKey="waitForProductBundlePage"/>
8082
<!-- See error message -->
8183
<comment userInput="See error message" stepKey="commentSeeErrorMessage"/>

app/code/Magento/Bundle/Test/Mftf/Test/StorefrontCheckBundleProductOptionTierPricesTest.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,19 @@
2727
<!-- Add tier prices to simple products -->
2828
<!-- Simple product 1 -->
2929
<actionGroup ref="LoginAsAdmin" stepKey="loginAsAdmin"/>
30-
<amOnPage url="{{AdminProductEditPage.url($$simpleProduct1CreateBundleProduct.id$$)}}" stepKey="openAdminEditPageProduct1"/>
30+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="openAdminEditPageProduct1">
31+
<argument name="productId" value="$$simpleProduct1CreateBundleProduct.id$$"/>
32+
</actionGroup>
3133
<actionGroup ref="ProductSetAdvancedPricingActionGroup" stepKey="addTierPriceProduct1">
3234
<argument name="group" value="ALL GROUPS"/>
3335
<argument name="quantity" value="5"/>
3436
<argument name="price" value="Discount"/>
3537
<argument name="amount" value="50"/>
3638
</actionGroup>
3739
<!-- Simple product 2 -->
38-
<amOnPage url="{{AdminProductEditPage.url($$simpleProduct2CreateBundleProduct.id$$)}}" stepKey="openAdminEditPageProduct2"/>
40+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="openAdminEditPageProduct2">
41+
<argument name="productId" value="$$simpleProduct2CreateBundleProduct.id$$"/>
42+
</actionGroup>
3943
<actionGroup ref="ProductSetAdvancedPricingActionGroup" stepKey="addTierPriceProduct2">
4044
<argument name="group" value="ALL GROUPS"/>
4145
<argument name="quantity" value="7"/>

app/code/Magento/Bundle/Test/Mftf/Test/StorefrontVerifyDynamicBundleProductPricesForCombinationOfOptionsTest.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@
4040

4141
<!--Add special price to simple product-->
4242
<actionGroup ref="LoginAsAdmin" stepKey="loginAsAdmin"/>
43-
<amOnPage url="{{AdminProductEditPage.url($$simpleProduct5.id$$)}}" stepKey="openAdminEditPage"/>
43+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="openAdminEditPage">
44+
<argument name="productId" value="$$simpleProduct5.id$$"/>
45+
</actionGroup>
4446
<actionGroup ref="AddSpecialPriceToProductActionGroup" stepKey="addSpecialPrice"/>
4547
<actionGroup ref="SaveProductFormActionGroup" stepKey="saveProductForm"/>
4648

app/code/Magento/Catalog/Test/Mftf/ActionGroup/GoToProductPageViaIDActionGroup.xml renamed to app/code/Magento/Catalog/Test/Mftf/ActionGroup/AdminProductPageOpenByIdActionGroup.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88

99
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11-
<actionGroup name="GoToProductPageViaIDActionGroup">
12-
<annotations>
13-
<description>Goes to the Product edit page for the provided Product ID.</description>
14-
</annotations>
11+
<actionGroup name="AdminProductPageOpenByIdActionGroup">
1512
<arguments>
1613
<argument name="productId" type="string"/>
1714
</arguments>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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="GoToProductPageViaIDActionGroup" extends="AdminProductPageOpenByIdActionGroup" deprecated="Use AdminProductPageOpenByIdActionGroup instead"/>
12+
</actionGroups>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<element name="filterOptions" type="text" selector=".filter-options-content .items"/>
1414
<element name="filterOption" type="text" selector=".filter-options-content .item"/>
1515
<element name="optionQty" type="text" selector=".filter-options-content .item .count"/>
16-
<element name="filterOptionByLabel" type="button" selector=" div.filter-options-item div[option-label='{{optionLabel}}']" parameterized="true"/>
16+
<element name="filterOptionByLabel" type="button" selector=" div.filter-options-item div[data-option-label='{{optionLabel}}']" parameterized="true"/>
1717
<element name="removeFilter" type="button" selector="div.filter-current .remove"/>
1818
<element name="activeFilterOptions" type="text" selector=".filter-options-item.active .items"/>
1919
<element name="activeFilterOptionItemByPosition" type="text" selector=".filter-options-item.active .items li:nth-child({{itemPosition}}) a" parameterized="true"/>

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

Lines changed: 7 additions & 3 deletions
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="urn:magento:mftf:Test/etc/testSchema.xsd">
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
1111
<test name="AddToCartCrossSellTest">
1212
<annotations>
1313
<features value="Catalog"/>
@@ -42,7 +42,9 @@
4242
</after>
4343

4444
<!-- Go to simpleProduct1, add simpleProduct2 and simpleProduct3 as cross-sell-->
45-
<amOnPage url="{{AdminProductEditPage.url($simpleProduct1.id$)}}" stepKey="goToProduct1"/>
45+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToProduct1">
46+
<argument name="productId" value="$simpleProduct1.id$"/>
47+
</actionGroup>
4648
<click stepKey="openHeader1" selector="{{AdminProductFormRelatedUpSellCrossSellSection.sectionHeader}}"/>
4749

4850
<actionGroup ref="AddCrossSellProductBySkuActionGroup" stepKey="addProduct2ToSimp1">
@@ -55,7 +57,9 @@
5557
<waitForPageLoad stepKey="waitForPageLoad1"/>
5658

5759
<!-- Go to simpleProduct3, add simpleProduct1 and simpleProduct2 as cross-sell-->
58-
<amOnPage url="{{AdminProductEditPage.url($simpleProduct3.id$)}}" stepKey="goToProduct3"/>
60+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToProduct3">
61+
<argument name="productId" value="$simpleProduct3.id$"/>
62+
</actionGroup>
5963
<click stepKey="openHeader2" selector="{{AdminProductFormRelatedUpSellCrossSellSection.sectionHeader}}"/>
6064

6165
<actionGroup ref="AddCrossSellProductBySkuActionGroup" stepKey="addProduct1ToSimp3">

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<!-- Set Magento back to default configuration -->
3232
<magentoCLI command="config:set {{CatalogInventoryOptionsShowOutOfStockDisable.path}} {{CatalogInventoryOptionsShowOutOfStockDisable.value}}" stepKey="setConfigShowOutOfStockFalse"/>
3333
<magentoCLI command="config:set {{CatalogInventoryItemOptionsBackordersDisable.path}} {{CatalogInventoryItemOptionsBackordersDisable.value}}" stepKey="setConfigAllowBackordersFalse"/>
34+
<magentoCLI command="cache:clean config full_page" stepKey="cleanInvalidatedCache"/>
3435
<deleteData createDataKey="createProduct" stepKey="deleteProduct"/>
3536
</after>
3637

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@
4949
</after>
5050

5151
<!-- Open created product for edit -->
52-
<amOnPage url="{{AdminProductEditPage.url($createSimpleProduct.id$)}}" stepKey="goToProductEditPage"/>
52+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToProductEditPage">
53+
<argument name="productId" value="$createSimpleProduct.id$"/>
54+
</actionGroup>
5355
<waitForPageLoad stepKey="waitForProductPageLoad"/>
5456

5557
<!-- Add created attribute to the product -->

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<actionGroup ref="CliRunReindexUsingCronJobsActionGroup" stepKey="reindexInvalidatedIndices"/>
3131
</after>
3232

33-
<actionGroup ref="GoToProductPageViaIDActionGroup" stepKey="goToSimpleProduct">
33+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToSimpleProduct">
3434
<argument name="productId" value="$$createSimpleProduct.id$$"/>
3535
</actionGroup>
3636
<actionGroup ref="AdminOpenProductImagesSectionActionGroup" stepKey="openProductImagesSection"/>

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@
3434
<actionGroup ref="ResetProductGridToDefaultViewActionGroup" stepKey="resetFiltersIfExist"/>
3535
<actionGroup ref="AdminLogoutActionGroup" stepKey="logoutOfAdmin"/>
3636
</after>
37-
<amOnPage url="{{AdminProductEditPage.url($$createSimpleProduct.id$$)}}" stepKey="goToProductEditPage"/>
37+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToProductEditPage">
38+
<argument name="productId" value="$$createSimpleProduct.id$$"/>
39+
</actionGroup>
3840
<waitForPageLoad stepKey="waitForSimpleProductPageLoad"/>
3941
<!--Save and duplicated the product once-->
4042
<comment userInput="Save and duplicated the product once" stepKey="commentSaveAndDuplicateProduct"/>
@@ -45,7 +47,9 @@
4547
<assertContains expectedType="string" expected="-1" actual="$grabDuplicatedProductUrlKey" stepKey="assertDuplicatedProductUrlKey1"/>
4648
<!--Add duplicated product to the simple product-->
4749
<comment userInput="Add duplicated product to the simple product" stepKey="commentAddProduct"/>
48-
<amOnPage url="{{AdminProductEditPage.url($$createSimpleProduct.id$$)}}" stepKey="goToSimpleProductPage"/>
50+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToSimpleProductPage">
51+
<argument name="productId" value="$$createSimpleProduct.id$$"/>
52+
</actionGroup>
4953
<waitForPageLoad stepKey="waitForSimpleProductPageLoad1"/>
5054
<actionGroup ref="AddCrossSellProductBySkuActionGroup" stepKey="addCrossSellProduct">
5155
<argument name="sku" value="$$createSimpleProduct.sku$$"/>
@@ -63,7 +67,9 @@
6367
<see selector="{{AdminProductFormRelatedUpSellCrossSellSection.selectedProductSku('crosssell')}}" userInput="$$createSimpleProduct.sku$$-1" stepKey="seeCrossSellProduct"/>
6468
<!--Save and duplicated the product second time-->
6569
<comment userInput="Save and duplicated the product second time" stepKey="commentSaveAndDuplicateProduct1"/>
66-
<amOnPage url="{{AdminProductEditPage.url($$createSimpleProduct.id$$)}}" stepKey="goToProductEditPage1"/>
70+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToProductEditPage1">
71+
<argument name="productId" value="$$createSimpleProduct.id$$"/>
72+
</actionGroup>
6773
<waitForPageLoad stepKey="waitForSimpleProductPageLoad2"/>
6874
<actionGroup ref="AdminFormSaveAndDuplicateActionGroup" stepKey="saveAndDuplicateProductFormSecondTime"/>
6975
<conditionalClick selector="{{AdminProductSEOSection.sectionHeader}}" dependentSelector="{{AdminProductSEOSection.urlKeyInput}}" visible="false" stepKey="openProductSEOSection"/>

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@
5454
</actionGroup>
5555

5656
<!--Go to created product page and create new attribute-->
57-
<amOnPage url="{{AdminProductEditPage.url($$createProduct.id$$)}}" stepKey="openAdminEditPage"/>
57+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="openAdminEditPage">
58+
<argument name="productId" value="$$createProduct.id$$"/>
59+
</actionGroup>
5860
<actionGroup ref="AdminCreateAttributeWithValueWithTwoStoreViesFromProductPageActionGroup" stepKey="createAttribute">
5961
<argument name="attributeName" value="{{productDropDownAttribute.attribute_code}}"/>
6062
<argument name="attributeType" value="Dropdown"/>

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,16 @@
4040
<createData entity="SimpleProduct2" stepKey="createProduct"/>
4141
<createData entity="SubCategory" stepKey="createSubCategory"/>
4242
<createData entity="NewRootCategory" stepKey="createRootCategory"/>
43-
<amOnPage url="{{AdminProductEditPage.url($$createProduct.id$$)}}" stepKey="visitAdminProductPage"/>
43+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="visitAdminProductPage">
44+
<argument name="productId" value="$$createProduct.id$$"/>
45+
</actionGroup>
4446
<waitForPageLoad stepKey="waitForProductPageLoad0"/>
4547
<searchAndMultiSelectOption selector="{{AdminProductFormSection.categoriesDropdown}}" parameterArray="['Default Category', $$createRootCategory.name$$, $$createSubCategory.name$$]" stepKey="fillCategory"/>
4648
<actionGroup ref="SaveProductFormActionGroup" stepKey="saveProduct"/>
4749
<!--Add images to the product-->
48-
<amOnPage url="{{AdminProductEditPage.url($$createProduct.id$$)}}" stepKey="visitAdminProductPage2"/>
50+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="visitAdminProductPage2">
51+
<argument name="productId" value="$$createProduct.id$$"/>
52+
</actionGroup>
4953
<waitForPageLoad stepKey="waitForProductPageLoad1"/>
5054
<actionGroup ref="AddProductImageActionGroup" stepKey="addImageToProduct">
5155
<argument name="image" value="ProductImage"/>
@@ -80,7 +84,9 @@
8084
<click selector="{{AdminStoresGridSection.resetButton}}" stepKey="clickResetButton"/>
8185
<waitForPageLoad stepKey="waitForStorePageLoad"/>
8286
<!--Open product page on admin-->
83-
<amOnPage url="{{AdminProductEditPage.url($$createProduct.id$$)}}" stepKey="openProductEditPage"/>
87+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="openProductEditPage">
88+
<argument name="productId" value="$$createProduct.id$$"/>
89+
</actionGroup>
8490
<waitForPageLoad stepKey="waitForProductPageLoad2"/>
8591
<!--Enable the newly created website and save the product-->
8692
<actionGroup ref="SelectProductInWebsitesActionGroup" stepKey="selectWebsiteInProduct2">

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
<actionGroup ref="ClearProductsFilterActionGroup" stepKey="clearProductsFilter"/>
2929
<actionGroup ref="AdminLogoutActionGroup" stepKey="logout"/>
3030
</after>
31-
<amOnPage url="{{AdminProductEditPage.url($$createSimpleProduct.id$$)}}" stepKey="goToEditPage"/>
31+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToEditPage">
32+
<argument name="productId" value="$$createSimpleProduct.id$$"/>
33+
</actionGroup>
3234
<actionGroup ref="AdminSwitchStoreViewActionGroup" stepKey="switchToDefaultStoreView">
3335
<argument name="storeView" value="_defaultStore.name"/>
3436
</actionGroup>

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@
4949
<actionGroup ref="AdminLogoutActionGroup" stepKey="logoutOfAdmin"/>
5050
</after>
5151
<!--Change second product sku to first product sku-->
52-
<amOnPage url="{{AdminProductEditPage.url($$createSecondProduct.id$$)}}" stepKey="goToProductEditPage1"/>
52+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToProductEditPage1">
53+
<argument name="productId" value="$$createSecondProduct.id$$"/>
54+
</actionGroup>
5355
<waitForPageLoad stepKey="waitForProductEditPageLoad1"/>
5456
<fillField selector="{{AdminProductFormSection.productSku}}" userInput="$$createFirstProduct.sku$$" stepKey="fillProductSku1"/>
5557
<!--Import customizable options and check-->

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@
6868
<seeElement selector="{{AdminCategoryMessagesSection.SuccessMessage}}" stepKey="seeSaveSuccessMessage"/>
6969

7070
<!-- Assign <product1> to the <Sub1> -->
71-
<amOnPage url="{{AdminProductEditPage.url($$simpleProduct.id$$)}}" stepKey="goToProduct"/>
71+
<actionGroup ref="AdminProductPageOpenByIdActionGroup" stepKey="goToProduct">
72+
<argument name="productId" value="$$simpleProduct.id$$"/>
73+
</actionGroup>
7274
<waitForPageLoad stepKey="waitForProductPageLoad"/>
7375
<click selector="{{AdminProductFormSection.categoriesDropdown}}" stepKey="activateDropDownCategory"/>
7476
<fillField userInput="{{SimpleSubCategory.name}}" selector="{{AdminProductFormSection.searchCategory}}" stepKey="fillSearch"/>

0 commit comments

Comments
 (0)