<?xml version="1.0" encoding="UTF-8"?>
<!--
 /**
  * Copyright © Magento, Inc. All rights reserved.
  * See COPYING.txt for license details.
  */
-->
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
    <actionGroup name="AdminApplyMinAndMaxQtyOnProductEditPageActionGroup">
        <arguments>
            <argument name="minQty" type="string" defaultValue="0"/>
            <argument name="maxQty" type="string" defaultValue="0"/>
        </arguments>
        <click selector="{{AdminProductSourcesSection.advancedInventory}}" stepKey="clickOnAdvancedInventoryToSetManageStock"/>
        <uncheckOption selector="{{AdminProductFormAdvancedInventorySection.miniQtyConfigSetting}}" stepKey="uncheckMinQtyUseDefault"/>
        <fillField selector="{{AdminProductFormAdvancedInventorySection.miniQtyAllowedInCart}}" userInput="{{minQty}}" stepKey="fillMinQty"/>
        <uncheckOption selector="{{AdminProductFormAdvancedInventorySection.maxiQtyConfigSetting}}" stepKey="uncheckMaxQtyUseDefault"/>
        <fillField selector="{{AdminProductFormAdvancedInventorySection.maxiQtyAllowedInCart}}" userInput="{{maxQty}}" stepKey="fillMaxQty"/>
        <click selector="{{AdminAdvancedInventoryControlsSection.done}}" stepKey="closeAdvanceInventoryModal"/>
    </actionGroup>
</actionGroups>
