Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

31 строка
1.5 KiB

  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. <actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
  10. <actionGroup name="AdminCreateCustomerGroupActionGroup">
  11. <annotations>
  12. <description>Goes to the Customer Groups creation page. Fills Name. Selects Tax Class. Clicks on Save. Validate that the Success Message is present and correct.</description>
  13. </annotations>
  14. <arguments>
  15. <argument name="groupName" type="string"/>
  16. <argument name="taxClass" type="string"/>
  17. </arguments>
  18. <amOnPage url="{{AdminNewCustomerGroupPage.url}}" stepKey="goToNewCustomerGroupPage"/>
  19. <waitForPageLoad stepKey="waitForNewCustomerGroupPageLoad"/>
  20. <!--Set tax class for customer group-->
  21. <fillField stepKey="fillGroupName" selector="{{AdminNewCustomerGroupSection.groupName}}" userInput="{{groupName}}"/>
  22. <selectOption selector="{{AdminNewCustomerGroupSection.taxClass}}" userInput="{{taxClass}}" stepKey="selectTaxClassOption"/>
  23. <click selector="{{AdminNewCustomerGroupSection.saveCustomerGroup}}" stepKey="clickToSaveCustomerGroup"/>
  24. <waitForPageLoad stepKey="waitForCustomerGroupSaved"/>
  25. <see stepKey="seeCustomerGroupSaveMessage" userInput="You saved the customer group."/>
  26. </actionGroup>
  27. </actionGroups>