Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

30 řádky
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="OpenEditCustomerFromAdminActionGroup">
  11. <annotations>
  12. <description>Goes to the Admin Customers grid page. Filters the grid based on the provided Customer. Clicks on Edit.</description>
  13. </annotations>
  14. <arguments>
  15. <argument name="customer"/>
  16. </arguments>
  17. <amOnPage url="{{AdminCustomerPage.url}}" stepKey="navigateToCustomers"/>
  18. <waitForPageLoad stepKey="waitForPageLoad1"/>
  19. <conditionalClick selector="{{AdminDataGridHeaderSection.clearFilters}}" dependentSelector="{{AdminDataGridHeaderSection.clearFilters}}" visible="true" stepKey="clearExistingOrderFilters"/>
  20. <click selector="{{AdminCustomerFiltersSection.filtersButton}}" stepKey="openFilter"/>
  21. <fillField userInput="{{customer.email}}" selector="{{AdminCustomerFiltersSection.emailInput}}" stepKey="filterEmail"/>
  22. <click selector="{{AdminCustomerFiltersSection.apply}}" stepKey="applyFilter"/>
  23. <waitForPageLoad stepKey="waitForPageLoad2"/>
  24. <click selector="{{AdminCustomerGridSection.firstRowEditLink}}" stepKey="clickEdit"/>
  25. <waitForPageLoad stepKey="waitForPageLoad3"/>
  26. </actionGroup>
  27. </actionGroups>