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

26 строки
1.1 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. <!-- Fill Order status form and click save -->
  11. <actionGroup name="AdminOrderStatusFormFillAndSave">
  12. <annotations>
  13. <description>Fills in the provided Status and Label on the Admin Order Status section.</description>
  14. </annotations>
  15. <arguments>
  16. <argument name="status" type="string"/>
  17. <argument name="label" type="string"/>
  18. </arguments>
  19. <fillField stepKey="fillStatusCode" selector="{{AdminOrderStatusFormSection.statusCodeField}}" userInput="{{status}}"/>
  20. <fillField stepKey="fillStatusLabel" selector="{{AdminOrderStatusFormSection.statusLabelField}}" userInput="{{label}}"/>
  21. <click stepKey="clickSaveStatus" selector="{{AdminMainActionsSection.save}}"/>
  22. </actionGroup>
  23. </actionGroups>