Вы не можете выбрать более 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. <!-- Search order status grid for item with a specific code and validate data -->
  11. <actionGroup name="AssertOrderStatusExistsInGrid">
  12. <annotations>
  13. <description>Validates that the provided Order Status and Label are present in the Admin Orders grid.</description>
  14. </annotations>
  15. <arguments>
  16. <argument name="status" type="string"/>
  17. <argument name="label" type="string"/>
  18. </arguments>
  19. <click selector="{{AdminDataGridHeaderSection.clearFilters}}" stepKey="clickClearFilters"/>
  20. <fillField selector="{{AdminOrderStatusGridSection.statusCodeFilterField}}" userInput="{{status}}" stepKey="fillStatusFilter"/>
  21. <click selector="{{AdminSecondaryGridSection.searchButton}}" stepKey="clickSearch"/>
  22. <see selector="{{AdminOrderStatusGridSection.statusCodeDataColumn}}" userInput="{{status}}" stepKey="seeStatusCodeInGrid"/>
  23. <see selector="{{AdminOrderStatusGridSection.statusLabelDataColumn}}" userInput="{{label}}" stepKey="seeStatusLabelInGrid"/>
  24. </actionGroup>
  25. </actionGroups>