12345678910111213141516171819202122232425262728293031323334 |
- <?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="AdminCacheManagementSection">
- <element name="FlushMagentoCache" type="button" selector="#flush_magento"/>
- <element name="actionDropDown" type="multiselect" selector="//*[@id='cache_grid_massaction-select']//option[contains(., 'Action')]" timeout="30"/>
- <element name="refreshOption" type="multiselect" selector="//*[@id='cache_grid_massaction-select']//option[@value='refresh']" timeout="30"/>
- <element name="pageCacheRowCheckbox" type="checkbox" selector="//td[contains(., 'Page Cache')]/..//input[@type='checkbox']"/>
- <element name="submit" type="button" selector="//button[@title='Submit']" timeout="30"/>
- <element name="massActionSelect" type="select" selector="#cache_grid_massaction-form #cache_grid_massaction-select"/>
- <element name="massActionSubmit" type="button" selector="#cache_grid_massaction-form button"/>
- <element name="configurationCheckbox" type="checkbox" selector="input[value='config']"/>
- <element name="layoutsCheckbox" type="checkbox" selector="input[value='layout']"/>
- <element name="blocksHtmlCheckbox" type="checkbox" selector="input[value='block_html']"/>
- <element name="collectionsDataCheckbox" type="checkbox" selector="input[value='collections']"/>
- <element name="reflectionDataCheckbox" type="checkbox" selector="input[value='reflection']"/>
- <element name="databaseDdlCheckbox" type="checkbox" selector="input[value='db_ddl']"/>
- <element name="compiledConfigCheckbox" type="checkbox" selector="input[value='compiled_config']"/>
- <element name="eavTypesAndAttrsCheckbox" type="checkbox" selector="input[value='eav']"/>
- <element name="customerNotificationCheckbox" type="checkbox" selector="input[value='customer_notification']"/>
- <element name="integrationsConfigCheckbox" type="checkbox" selector="input[value='config_integration']"/>
- <element name="integrationsApiCheckbox" type="checkbox" selector="input[value='config_integration_api']"/>
- <element name="pageCacheCheckbox" type="checkbox" selector="input[value='full_page']"/>
- <element name="webServicesConfigCheckbox" type="checkbox" selector="input[value='config_webservice']"/>
- <element name="translationsCheckbox" type="checkbox" selector="input[value='translate']"/>
- </section>
- </sections>
|