123456789101112131415161718192021222324 |
- <?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="AdminTaxRateFormSection">
- <element name="taxIdentifier" type="input" selector="#code" />
- <element name="deleteRate" type="button" selector="#delete" timeout="30"/>
- <element name="ok" type="button" selector="button.action-primary.action-accept" timeout="30"/>
- <element name="save" type="button" selector="#save" timeout="30"/>
- <element name="country" type="select" selector="#tax_country_id"/>
- <element name="state" type="select" selector="#tax_region_id"/>
- <element name="rate" type="text" selector="#rate"/>
- <element name="zipRange" type="checkbox" selector="#zip_is_range"/>
- <element name="rangeFrom" type="text" selector="#zip_from"/>
- <element name="rangeTo" type="text" selector="#zip_to"/>
- <element name="zipCode" type="input" selector="#tax_postcode"/>
- </section>
- </sections>
|