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
//Verify that I still has agreements popup & cannot add a database
21
+
//Verify that I still has agreements popup & cannot add a database
22
22
awaitt.expect(userAgreementPage.userAgreementsPopup.exists).ok('User Agreements Popup is shown');
23
23
awaitt.expect(addRedisDatabasePage.addDatabaseManually.exists).notOk('User can\'t add a database');
24
24
});
25
25
test('Verify that the encryption enabled by default and specific message',asynct=>{
26
26
constexpectedPluginText='To avoid automatic execution of malicious code, when adding new Workbench plugins, use files from trusted authors only.';
27
-
//Verify that section with plugin warning is displayed
28
-
awaitt.expect(userAgreementPage.pluginSectionWithText.visible).ok('Plugin text is displayed');
29
-
//Verify that text that is displayed in window is 'While adding new visualization plugins, use files only from trusted authors to avoid automatic execution of malicious code.'
27
+
//Verify that section with plugin warning is displayed
28
+
awaitt.expect(userAgreementPage.pluginSectionWithText.exists).ok('Plugin text is not displayed');
29
+
//Verify that text that is displayed in window is 'While adding new visualization plugins, use files only from trusted authors to avoid automatic execution of malicious code.'
awaitt.expect(bulkActionsPage.bulkActionsContainer.visible).ok('Bulk actions screen not opened');
40
+
awaitt.expect(bulkActionsPage.bulkActionsContainer.exists).ok('Bulk actions screen not opened');
41
41
// Verify that user can see pattern summary of the keys selected: key type, pattern
42
42
awaitt.expect(bulkActionsPage.infoFilter.innerText).contains('Key type:\nHASH','Key type is not correct');
43
43
awaitt.expect(bulkActionsPage.infoSearch.innerText).contains('Pattern: *','Key pattern is not correct');
@@ -51,7 +51,7 @@ test('Verify that user can access the bulk actions screen in the Browser', async
51
51
awaitt.click(bulkActionsPage.deleteButton);
52
52
awaitt.expect(bulkActionsPage.bulkActionWarningTooltip.textContent).contains(warningTooltipTitle,'Warning Tooltip title is not displayed or text is invalid');
53
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');
54
+
awaitt.expect(bulkActionsPage.bulkApplyButton.exists).ok('Confirm deletion button not displayed');
55
55
56
56
});
57
57
test('Verify that user can see summary of scanned level',asynct=>{
@@ -82,8 +82,8 @@ test('Verify that user can see blue progress line during the process of bulk del
0 commit comments