1234567891011121314151617181920212223 |
- <?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="AdminSourceSelectionFormSection">
- <element name="sourceSelectionAlgorithmToggle" type="button" selector=".action-toggle.primary.save"/>
- <element name="selectSourcePriority" type="button" selector=".item[data-ui-id='source-selection-algorithms-button-item-0']"/>
- <element name="proceedToShipment" type="button" selector="#save[data-ui-id='save-button']"/>
- <element name="sourceSelection" type="select" selector="select[name='sourceCode']"/>
- </section>
- <section name="AdminSourceSelectionOrderedItemsGrid">
- <element name="rowProductSku" type="text" selector=".data-row[data-repeat-index='{{productRow}}'] div[data-index='sku']" parameterized="true"/>
- <element name="rowQtyToShip" type="text" selector=".data-row[data-repeat-index='{{productRow}}'] div[data-index='qtyToShip']" parameterized="true"/>
- <element name="rowAvailableSourcesName" type="text" selector=".data-row[data-repeat-index='{{productRow}}'] td[data-index='sources'] .data-row[data-repeat-index='{{sourceRow}}'] span[data-index='sourceName']" parameterized="true"/>
- <element name="rowAvailableSourcesQtyToDeduct" type="input" selector=".data-row[data-repeat-index='{{productRow}}'] td[data-index='sources'] input[name='items[{{productRow}}][sources][{{sourceRow}}][qtyToDeduct]']" parameterized="true"/>
- </section>
- </sections>
|