Skip to content

Commit 2be8b6e

Browse files
merge magento/2.3-develop into magento-chaika/Chaika-PR-2020-05-17
2 parents 05c5952 + 9e5c867 commit 2be8b6e

16 files changed

+117
-193
lines changed

app/code/Magento/Bundle/Test/Mftf/Test/AdminAddDefaultVideoBundleProductTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MC-110"/>
1919
<group value="Bundle"/>
20+
<skip>
21+
<issueId value="MC-34447"/>
22+
</skip>
2023
</annotations>
2124
<before>
2225
<createData entity="SimpleProduct2" stepKey="simpleProduct1"/>

app/code/Magento/Bundle/Test/Mftf/Test/AdminRemoveDefaultVideoBundleProductTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MC-205"/>
1919
<group value="Bundle"/>
20+
<skip>
21+
<issueId value="MC-34447"/>
22+
</skip>
2023
</annotations>
2124
<before>
2225
<createData entity="SimpleProduct2" stepKey="simpleProduct1"/>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11+
<actionGroup name="AssertStorefrontProductNotVisibleInRecentlyComparedWidgetActionGroup">
12+
<annotations>
13+
<description>Validate that the provided Product not appears in the Recently Compared Products widget.</description>
14+
</annotations>
15+
<arguments>
16+
<argument name="productName" type="string" defaultValue="{{SimpleOne.name}}"/>
17+
</arguments>
18+
19+
<dontSee selector="{{StorefrontWidgetsSection.widgetRecentlyComparedProductsGrid}}" userInput="{{productName}}" stepKey="dontSeeProductInRecentlyComparedWidget"/>
20+
</actionGroup>
21+
</actionGroups>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11+
<actionGroup name="AssertStorefrontProductNotVisibleInRecentlyOrderedWidgetActionGroup">
12+
<annotations>
13+
<description>Validate that the provided Product not appears in the Recently Ordered Products widget.</description>
14+
</annotations>
15+
<arguments>
16+
<argument name="productName" type="string" defaultValue="{{SimpleOne.name}}"/>
17+
</arguments>
18+
19+
<dontSee selector="{{StorefrontWidgetsSection.widgetRecentlyOrderedProductsGrid}}" userInput="{{productName}}" stepKey="dontSeeProductInRecentlyOrderedWidget"/>
20+
</actionGroup>
21+
</actionGroups>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11+
<actionGroup name="AssertStorefrontProductNotVisibleInRecentlyViewedWidgetActionGroup">
12+
<annotations>
13+
<description>Validate that the provided Product not appears in the Recently Viewed Products widget.</description>
14+
</annotations>
15+
<arguments>
16+
<argument name="productName" type="string" defaultValue="{{SimpleOne.name}}"/>
17+
</arguments>
18+
19+
<dontSee selector="{{StorefrontWidgetsSection.widgetRecentlyViewedProductsGrid}}" userInput="{{productName}}" stepKey="dontSeeProductInRecentlyViewedWidget"/>
20+
</actionGroup>
21+
</actionGroups>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
9+
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
11+
<actionGroup name="AssertStorefrontProductNotVisibleInWishlistWidgetActionGroup">
12+
<annotations>
13+
<description>Validate that the provided Product not appears in the Wishlist widget.</description>
14+
</annotations>
15+
<arguments>
16+
<argument name="productName" type="string" defaultValue="{{SimpleOne.name}}"/>
17+
</arguments>
18+
19+
<dontSee selector="{{StorefrontCustomerWishlistSidebarSection.ProductTitleByName(productName)}}" stepKey="dontSeeProductInWishlistWidget"/>
20+
</actionGroup>
21+
</actionGroups>

app/code/Magento/Catalog/Test/Mftf/Test/AdminAddDefaultVideoSimpleProductTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MC-111"/>
1919
<group value="Catalog"/>
20+
<skip>
21+
<issueId value="MC-34447"/>
22+
</skip>
2023
</annotations>
2124
<before>
2225
<actionGroup ref="EnableAdminAccountSharingActionGroup" stepKey="enableAdminAccountSharing"/>

app/code/Magento/Catalog/Test/Mftf/Test/AdminAddDefaultVideoVirtualProductTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MC-109"/>
1919
<group value="Catalog"/>
20+
<skip>
21+
<issueId value="MC-34447"/>
22+
</skip>
2023
</annotations>
2124

2225
<!-- Replacing steps in base AdminAddDefaultVideoSimpleProductTest -->

app/code/Magento/Catalog/Test/Mftf/Test/AdminRemoveDefaultVideoSimpleProductTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MC-206"/>
1919
<group value="Catalog"/>
20+
<skip>
21+
<issueId value="MC-34447"/>
22+
</skip>
2023
</annotations>
2124
<before>
2225
<actionGroup ref="EnableAdminAccountSharingActionGroup" stepKey="enableAdminAccountSharing"/>

app/code/Magento/Catalog/Test/Mftf/Test/AdminRemoveDefaultVideoVirtualProductTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MC-204"/>
1919
<group value="Catalog"/>
20+
<skip>
21+
<issueId value="MC-34447"/>
22+
</skip>
2023
</annotations>
2124

2225
<!-- Replacing steps in base AdminRemoveDefaultVideoSimpleProductTest -->

app/code/Magento/Downloadable/Test/Mftf/Test/AdminAddDefaultVideoDownloadableProductTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MC-114"/>
1919
<group value="Downloadable"/>
20+
<skip>
21+
<issueId value="MC-34447"/>
22+
</skip>
2023
</annotations>
2124
<before>
2225
<magentoCLI stepKey="addDownloadableDomain" command="downloadable:domains:add static.magento.com" before="enableAdminAccountSharing"/>

app/code/Magento/Downloadable/Test/Mftf/Test/AdminRemoveDefaultVideoDownloadableProductTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MC-207"/>
1919
<group value="Downloadable"/>
20+
<skip>
21+
<issueId value="MC-34447"/>
22+
</skip>
2023
</annotations>
2124
<before>
2225
<magentoCLI stepKey="addDownloadableDomain" command="downloadable:domains:add static.magento.com" before="enableAdminAccountSharing"/>

app/code/Magento/GroupedProduct/Test/Mftf/Test/AdminAddDefaultVideoGroupedProductTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MC-108"/>
1919
<group value="GroupedProduct"/>
20+
<skip>
21+
<issueId value="MC-34447"/>
22+
</skip>
2023
</annotations>
2124
<before>
2225
<createData entity="SimpleProduct2" stepKey="simpleProduct1"/>

app/code/Magento/GroupedProduct/Test/Mftf/Test/AdminRemoveDefaultVideoGroupedProductTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<severity value="MAJOR"/>
1818
<testCaseId value="MC-203"/>
1919
<group value="GroupedProduct"/>
20+
<skip>
21+
<issueId value="MC-34447"/>
22+
</skip>
2023
</annotations>
2124
<before>
2225
<createData entity="SimpleProduct2" stepKey="simpleProduct1"/>

0 commit comments

Comments
 (0)