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

35 строки
1.6 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. <!-- Action group to delete an item given that items name -->
  11. <!-- Must already be on the admin page containing the grid -->
  12. <actionGroup name="deleteEntitySecondaryGrid">
  13. <annotations>
  14. <description>This Action Group deletes an item from a grid based on provided Name. After Searching, the First Row is clicked.</description>
  15. </annotations>
  16. <arguments>
  17. <argument name="name" type="string"/>
  18. <argument name="searchInput" type="string"/>
  19. </arguments>
  20. <!-- search for the name -->
  21. <click stepKey="resetFilters" selector="{{AdminSecondaryGridSection.resetFilters}}"/>
  22. <fillField stepKey="fillIdentifier" selector="{{searchInput}}" userInput="{{name}}"/>
  23. <click stepKey="searchForName" selector="{{AdminSecondaryGridSection.searchButton}}"/>
  24. <click stepKey="clickResult" selector="{{AdminSecondaryGridSection.firstRow}}"/>
  25. <waitForPageLoad stepKey="waitForTaxRateLoad"/>
  26. <!-- delete the rule -->
  27. <click stepKey="clickDelete" selector="{{AdminStoresMainActionsSection.deleteButton}}"/>
  28. <click stepKey="clickOk" selector="{{AdminConfirmationModalSection.ok}}"/>
  29. <see stepKey="seeSuccess" selector="{{AdminMessagesSection.success}}" userInput="deleted"/>
  30. </actionGroup>
  31. </actionGroups>