You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awaitt.expect(browserPage.tooltip.textContent).eql(tooltipText,'Tooltip is not displayed or text is invalid');
48
+
// Verify that user can see warning message clicking on Delete button for Bulk Deletion
49
+
constwarningTooltipTitle='Are you sure you want to perform this action?';
50
+
constwarningTooltipMessage='All keys with HASH key type and selected pattern will be deleted.';
51
+
awaitt.click(bulkActionsPage.deleteButton);
52
+
awaitt.expect(bulkActionsPage.bulkActionWarningTooltip.textContent).contains(warningTooltipTitle,'Warning Tooltip title is not displayed or text is invalid');
53
+
awaitt.expect(bulkActionsPage.bulkActionWarningTooltip.textContent).contains(warningTooltipMessage,'Warning Tooltip message is not displayed or text is invalid');
54
+
awaitt.expect(bulkActionsPage.bulkApplyButton.visible).ok('Confirm deletion button not displayed');
55
+
49
56
});
50
57
test('Verify that user can see no pattern selected message when no key type and pattern applied for Bulk Delete',asynct=>{
51
58
constmessageTitle='No pattern or key type set';
@@ -56,39 +63,18 @@ test('Verify that user can see no pattern selected message when no key type and
56
63
awaitt.expect(bulkActionsPage.bulkActionsPlaceholder.textContent).contains(messageText,'No pattern message not displayed');
57
64
});
58
65
test('Verify that user can see summary of scanned level',asynct=>{
awaitt.expect(bulkActionsPage.bulkActionWarningTooltip.textContent).contains(warningTooltipTitle,'Warning Tooltip title is not displayed or text is invalid');
90
-
awaitt.expect(bulkActionsPage.bulkActionWarningTooltip.textContent).contains(warningTooltipMessage,'Warning Tooltip message is not displayed or text is invalid');
91
-
awaitt.expect(bulkActionsPage.bulkApplyButton.visible).ok('Confirm deletion button not displayed');
77
+
awaitt.expect(bulkActionsPage.bulkDeleteSummary.innerText).match(scannedKeys,'Bulk delete summary is not correct');
92
78
});
93
79
test('Verify that user can see blue progress line during the process of bulk deletion',asynct=>{
0 commit comments