Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?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="AdminCreateNewSearchTermEntityActionGroup">
- <arguments>
- <argument name="query" type="string"/>
- <argument name="store" type="string"/>
- <argument name="redirectUrl" type="string"/>
- </arguments>
-
- <click selector="{{AdminSearchTermsGridSection.addNewEntity}}" stepKey="clickAddNewButton"/>
- <fillField stepKey="fillSearchQueryField" selector="{{AdminSearchTermFormSection.searchQuery}}" userInput="{{query}}"/>
- <selectOption stepKey="storeSelect" selector="{{AdminSearchTermFormSection.storeID}}" userInput="{{store}}"/>
- <fillField stepKey="fillRedirectUrl" selector="{{AdminSearchTermFormSection.redirectUrl}}" userInput="{{redirectUrl}}"/>
- <click stepKey="saveSearchTerm" selector="{{AdminSearchTermFormSection.save}}"/>
- <waitForPageLoad stepKey="waitForPageLoad"/>
- </actionGroup>
- </actionGroups>
|