12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
- <section name="AdminStoresGridControlsSection">
- <element name="createStoreView" type="button" selector="#add_store"/>
- <element name="createStore" type="button" selector="#add_group"/>
- <element name="createWebsite" type="button" selector="#add"/>
- </section>
- <section name="AdminStoresGridSection">
- <element name="storeGrpFilterTextField" type="input" selector="#storeGrid_filter_group_title"/>
- <element name="websiteFilterTextField" type="input" selector="#storeGrid_filter_website_title"/>
- <element name="storeFilterTextField" type="input" selector="#storeGrid_filter_store_title" timeout="90"/>
- <element name="searchButton" type="button" selector=".admin__data-grid-header button[title=Search]" timeout="30"/>
- <element name="resetButton" type="button" selector="button[title='Reset Filter']" timeout="30"/>
- <element name="websiteNameInFirstRow" type="text" selector=".col-website_title>a"/>
- <element name="storeGrpNameInFirstRow" type="text" selector=".col-group_title>a"/>
- <element name="storeNameInFirstRow" type="text" selector=".col-store_title>a"/>
- <element name="firstRow" type="textarea" selector="(//*[@id='storeGrid_table']/tbody/tr)[1]"/>
- </section>
- </sections>
|