<?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="CreateDefaultAttributeSetActionGroup">
        <annotations>
            <description>Goes to the Attribute Sets grid page. Clicks on Add. Fill Name. Clicks on Save.</description>
        </annotations>
        <arguments>
            <argument name="label" type="string"/>
        </arguments>

        <amOnPage url="{{AdminProductAttributeSetGridPage.url}}" stepKey="goToAttributeSets"/>
        <waitForPageLoad stepKey="wait1"/>
        <click selector="{{AdminProductAttributeSetGridSection.addAttributeSetBtn}}" stepKey="clickAddAttributeSet"/>
        <fillField selector="{{AdminProductAttributeSetSection.name}}" userInput="{{label}}" stepKey="fillName"/>
        <click selector="{{AdminProductAttributeSetSection.saveBtn}}" stepKey="clickSave1"/>
    </actionGroup>
</actionGroups>
