|
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
-
- <actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
- <actionGroup name="VerifyCreatedOrderInformationActionGroup">
- <annotations>
- <description>Validates that the Success Message, Order Status (Pending) and Order ID are present and correct.</description>
- </annotations>
-
- <see selector="{{AdminOrderDetailsMessagesSection.successMessage}}" userInput="You created the order." stepKey="seeSuccessMessage"/>
- <see selector="{{AdminOrderDetailsInformationSection.orderStatus}}" userInput="Pending" stepKey="seeOrderPendingStatus"/>
- <comment userInput="BIC workaround" stepKey="getOrderId"/>
- <grabTextFrom selector="|Order # (\d+)|" stepKey="orderNumber"/>
- <assertNotEmpty stepKey="assertOrderIdIsNotEmpty">
- <actualResult type="const">$orderNumber</actualResult>
- </assertNotEmpty>
- </actionGroup>
- </actionGroups>
|