Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

35 rader
2.0 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="DeleteCustomerByEmailActionGroup">
  11. <annotations>
  12. <description>Goes to the Admin Customers grid page. Deletes a Customer based on the provided Email Address.</description>
  13. </annotations>
  14. <arguments>
  15. <argument name="email" type="string"/>
  16. </arguments>
  17. <amOnPage url="{{AdminCustomerPage.url}}" stepKey="navigateToCustomers"/>
  18. <waitForPageLoad stepKey="waitForAdminCustomerPageLoad"/>
  19. <click selector="{{AdminCustomerFiltersSection.filtersButton}}" stepKey="clickFilterButton"/>
  20. <conditionalClick selector="{{AdminDataGridHeaderSection.clearFilters}}" dependentSelector="{{AdminDataGridHeaderSection.clearFilters}}" visible="true" stepKey="cleanFiltersIfTheySet"/>
  21. <waitForPageLoad stepKey="waitForClearFilters"/>
  22. <fillField selector="{{AdminCustomerFiltersSection.emailInput}}" userInput="{{email}}" stepKey="filterEmail"/>
  23. <click selector="{{AdminCustomerFiltersSection.apply}}" stepKey="applyFilter"/>
  24. <waitForPageLoad stepKey="waitForPageToLoad"/>
  25. <click selector="{{AdminCustomerGridSection.selectFirstRow}}" stepKey="clickOnEditButton1"/>
  26. <click selector="{{CustomersPageSection.actions}}" stepKey="clickActionsDropdown"/>
  27. <click selector="{{CustomersPageSection.delete}}" stepKey="clickDelete"/>
  28. <waitForElementVisible selector="{{CustomersPageSection.ok}}" stepKey="waitForOkToVisible"/>
  29. <click selector="{{CustomersPageSection.ok}}" stepKey="clickOkConfirmationButton"/>
  30. <waitForElementVisible stepKey="waitForSuccessfullyDeletedMessage" selector="{{CustomersPageSection.deletedSuccessMessage}}" time="30"/>
  31. </actionGroup>
  32. </actionGroups>