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

28 строки
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="AdminAssertShipmentInShipmentsGrid">
  11. <arguments>
  12. <argument name="shipmentId" type="string"/>
  13. </arguments>
  14. <!--Assert Shipment in Shipments Grid-->
  15. <amOnPage url="{{AdminShipmentsGridPage.url}}" stepKey="onShipmentsGridPage"/>
  16. <waitForPageLoad stepKey="waitForLoadingPage"/>
  17. <conditionalClick selector="{{AdminShipmentsGridSection.clearFilters}}" dependentSelector="{{AdminShipmentsGridSection.clearFilters}}" visible="true" stepKey="clearFilter"/>
  18. <waitForLoadingMaskToDisappear stepKey="waitForFilterLoad"/>
  19. <click selector="{{AdminShipmentsGridSection.buttonFilters}}" stepKey="openFilterSearch"/>
  20. <waitForLoadingMaskToDisappear stepKey="waitForFilterFields"/>
  21. <fillField userInput="{{shipmentId}}" selector="{{AdminShipmentsGridSection.fieldShipment}}" stepKey="fillSearchByShipmentId"/>
  22. <click selector="{{AdminShipmentsGridSection.applyFilter}}" stepKey="clickSearchButton"/>
  23. <waitForLoadingMaskToDisappear stepKey="waitForSearchResult"/>
  24. <see userInput="{{shipmentId}}" selector="{{AdminShipmentsGridSection.rowShipments}}" stepKey="seeShipmentId"/>
  25. </actionGroup>
  26. </actionGroups>