Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?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="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Page/etc/SectionObject.xsd">
<section name="AdminProductGridSection">
<element name="productQtyPerSource" type="text" selector="//tr[{{row}}]//td[count(//div[@data-role='grid-wrapper']//tr//th[contains(., 'Quantity per Source')]/preceding-sibling::th) +1 ]//strong[text()='{{sourceName}}']/following-sibling::span" parameterized="true"/>
<element name="productSalableQty" type="text" selector="//tr[{{row}}]//td[count(//div[@data-role='grid-wrapper']//tr//th[contains(., 'Salable Quantity')]/preceding-sibling::th) +1 ]//strong[text()='{{stockName}}']/following-sibling::span" parameterized="true"/>
</section>
</sections>
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?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="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Page/etc/SectionObject.xsd">
<section name="AdminShipmentInventorySection">
<element name="sourceList" type="text" selector=".inventory div.admin__page-section-content"/>
</section>
</sections>
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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="../../../../../../../dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/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}}'] span[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>
Loading