AdminDeleteTaxRuleActionGroup.xml 1.3 KB

1234567891011121314151617181920212223242526
  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="AdminDeleteTaxRule">
  11. <arguments>
  12. <argument name="taxRuleCode" type="string" />
  13. </arguments>
  14. <amOnPage url="{{AdminTaxRuleGridPage.url}}" stepKey="goToTaxRuleGridPage"/>
  15. <waitForPageLoad stepKey="waitForPageLoad1" />
  16. <click selector="{{AdminDataGridHeaderSection.clearFilters}}" stepKey="clickClearFilters"/>
  17. <fillField selector="{{AdminTaxRuleGridSection.code}}" userInput="{{taxRuleCode}}" stepKey="fillTaxRuleCode"/>
  18. <click selector="{{AdminTaxRuleGridSection.search}}" stepKey="clickSearch"/>
  19. <waitForPageLoad stepKey="waitForTaxRuleSearch" />
  20. <click selector="{{AdminTaxRuleGridSection.nthRow('1')}}" stepKey="clickFirstRow"/>
  21. <waitForPageLoad stepKey="waitForPageLoad" />
  22. <click selector="{{AdminTaxRuleFormSection.deleteRule}}" stepKey="clickDeleteRule"/>
  23. <click selector="{{AdminTaxRuleFormSection.ok}}" stepKey="clickOk"/>
  24. </actionGroup>
  25. </actionGroups>