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

29 строки
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="AdminCreateTaxRuleActionGroup">
  11. <arguments>
  12. <argument name="taxRate" type="entity"/>
  13. <argument name="taxRule" type="entity"/>
  14. </arguments>
  15. <!-- Create Tax Rule -->
  16. <amOnPage url="{{AdminTaxRuleGridPage.url}}" stepKey="goToTaxRulePage"/>
  17. <waitForPageLoad stepKey="waitForTaxRatePage"/>
  18. <click selector="{{AdminGridMainControls.add}}" stepKey="addNewTaxRate"/>
  19. <fillField selector="{{AdminTaxRulesSection.ruleName}}" userInput="{{taxRule.code}}" stepKey="fillRuleName"/>
  20. <click selector="{{AdminTaxRulesSection.selectTaxRate(taxRate.code)}}" stepKey="selectTaxRate"/>
  21. <click selector="{{AdminTaxRuleFormSection.additionalSettings}}" stepKey="clickAdditionalSettings"/>
  22. <fillField userInput="{{taxRule.priority}}" selector="{{AdminTaxRuleFormSection.priority}}" stepKey="fillPriority"/>
  23. <fillField userInput="{{taxRule.position}}" selector="{{AdminTaxRuleFormSection.sortOrder}}" stepKey="fillPosition"/>
  24. <waitForLoadingMaskToDisappear stepKey="waitForLoading"/>
  25. <click selector="{{AdminStoresMainActionsSection.saveButton}}" stepKey="clickSave"/>
  26. </actionGroup>
  27. </actionGroups>