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

30 строки
1.4 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="AdminDeleteCreatedUserActionGroup">
  11. <annotations>
  12. <description>Goes to the Admin Users grid page. Edits the provided User. Deletes the User. Validates that the Success Message is present and correct.</description>
  13. </annotations>
  14. <arguments>
  15. <argument name="user"/>
  16. </arguments>
  17. <amOnPage stepKey="amOnAdminUsersPage" url="{{AdminUsersPage.url}}"/>
  18. <click stepKey="openTheUser" selector="{{AdminDeleteUserSection.role(user.username)}}"/>
  19. <waitForPageLoad stepKey="waitForSingleUserPageToLoad"/>
  20. <fillField stepKey="TypeCurrentPassword" selector="{{AdminDeleteUserSection.password}}" userInput="{{_ENV.MAGENTO_ADMIN_PASSWORD}}"/>
  21. <scrollToTopOfPage stepKey="scrollToTop"/>
  22. <click stepKey="clickToDeleteUser" selector="{{AdminDeleteUserSection.delete}}"/>
  23. <waitForPageLoad stepKey="waitForConfirmationPopup"/>
  24. <click stepKey="clickToConfirm" selector="{{AdminDeleteUserSection.confirm}}"/>
  25. <see stepKey="seeDeleteMessageForUser" userInput="You deleted the user."/>
  26. </actionGroup>
  27. </actionGroups>