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

30 строки
1.8 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. <!--Create Shipment With Tracking Number-->
  11. <actionGroup name="AdminCreateShipmentFromOrderPage">
  12. <arguments>
  13. <argument name="Title" defaultValue="" type="string"/>
  14. <argument name="Number" defaultValue="" type="string"/>
  15. <argument name="Comment" defaultValue="" type="string"/>
  16. <argument name="Qty" defaultValue="" type="string"/>
  17. </arguments>
  18. <click stepKey="clickShipButton" selector="{{AdminOrderDetailsMainActionsSection.ship}}"/>
  19. <click stepKey="clickAddTrackingNumber" selector="{{AdminShipmentPaymentShippingSection.AddTrackingNumber}}"/>
  20. <fillField stepKey="fillTitle" userInput="{{Title}}" selector="{{AdminShipmentPaymentShippingSection.Title('1')}}"/>
  21. <fillField stepKey="fillNumber" userInput="{{Number}}" selector="{{AdminShipmentPaymentShippingSection.Number('1')}}"/>
  22. <fillField stepKey="fillQty" userInput="{{Qty}}" selector="{{AdminShipmentItemsSection.itemQtyToShip('1')}}"/>
  23. <fillField stepKey="fillComment" userInput="{{Comment}}" selector="{{AdminShipmentTotalSection.CommentText}}"/>
  24. <click stepKey="clickSubmitButton" selector="{{AdminShipmentMainActionsSection.submitShipment}}"/>
  25. <see userInput="The shipment has been created." stepKey="seeSuccessMessage"/>
  26. </actionGroup>
  27. </actionGroups>