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

32 строки
1.8 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="DeleteCustomerFromAdminActionGroup">
  11. <annotations>
  12. <description>Goes to the Admin Customers grid page. Deletes the provided Customer from the grid. Validates that the Success message is present and correct.</description>
  13. </annotations>
  14. <arguments>
  15. <argument name="customer" defaultValue="CustomerEntityOne"/>
  16. </arguments>
  17. <amOnPage url="{{AdminCustomerPage.url}}" stepKey="navigateToCustomers"/>
  18. <conditionalClick selector="{{AdminDataGridHeaderSection.clearFilters}}" dependentSelector="{{AdminDataGridHeaderSection.clearFilters}}" visible="true" stepKey="clickOnButtonToRemoveFiltersIfPresent"/>
  19. <fillField selector="{{AdminDataGridHeaderSection.search}}" userInput="{{customer.email}}" stepKey="fillSearch"/>
  20. <click selector="{{AdminDataGridHeaderSection.submitSearch}}" stepKey="clickSubmit"/>
  21. <waitForAjaxLoad stepKey="waitForLoadAjax"/>
  22. <click selector="{{AdminCustomerGridMainActionsSection.multicheck}}" stepKey="selectAll"/>
  23. <click selector="{{AdminCustomerGridMainActionsSection.actions}}" stepKey="clickActions"/>
  24. <click selector="{{AdminCustomerGridMainActionsSection.delete}}" stepKey="clickDelete"/>
  25. <waitForAjaxLoad stepKey="waitForLoadConfirmation"/>
  26. <click selector="{{AdminConfirmationModalSection.ok}}" stepKey="confirmDelete"/>
  27. <see selector="{{AdminMessagesSection.success}}" userInput="A total of 1 record(s) were deleted" stepKey="seeSuccess"/>
  28. </actionGroup>
  29. </actionGroups>