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

28 строки
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. <!-- Assert Customer Account Information -->
  11. <actionGroup name="AdminAssertCustomerAccountInformation">
  12. <annotations>
  13. <description>Validates that the provided Customer details are present and correct on the Customer creation/edit page. Under the 'Account Information' section.</description>
  14. </annotations>
  15. <arguments>
  16. <argument name="firstName" type="string" defaultValue=""/>
  17. <argument name="lastName" type="string" defaultValue=""/>
  18. <argument name="email" type="string" defaultValue=""/>
  19. </arguments>
  20. <click selector="{{AdminCustomerAccountInformationSection.accountInformationTab}}" stepKey="proceedToAccountInformation"/>
  21. <seeInField userInput="{{firstName}}" selector="{{AdminCustomerAccountInformationSection.firstName}}" stepKey="firstName"/>
  22. <seeInField userInput="{{lastName}}" selector="{{AdminCustomerAccountInformationSection.lastName}}" stepKey="lastName"/>
  23. <seeInField userInput="{{email}}" selector="{{AdminCustomerAccountInformationSection.email}}" stepKey="email"/>
  24. </actionGroup>
  25. </actionGroups>