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
Copy file name to clipboardExpand all lines: tests/e2e/tests/regression/tree-view/tree-view.e2e.ts
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -35,11 +35,6 @@ test
35
35
awaitt.click(browserPage.treeViewButton);
36
36
awaitt.expect(browserPage.keyListMessage.textContent).contains(message,'The message is not displayed');
37
37
38
-
// Verify the default separator
39
-
awaitt.expect(browserPage.treeViewSeparator.textContent).eql(':','The “:” (colon) not used as a default separator for namespaces');
40
-
// Verify that user can see that “:” (colon) used as a default separator for namespaces and see the number of keys found per each namespace
41
-
awaitt.expect(browserPage.treeViewKeysNumber.visible).ok('The user can not see the number of keys');
42
-
43
38
// Verify that workbench opened by clicking on "Use Workbench Guides and Tutorials" link
44
39
awaitt.click(browserPage.workbenchLinkButton);
45
40
awaitt.expect(workbenchPage.expandArea.visible).ok('Workbench page is not opened');
@@ -59,6 +54,12 @@ test('Verify that user can see the total number of keys, the number of keys scan
59
54
test('Verify that when user deletes the key he can see the key is removed from the folder, the number of keys is reduced, the percentage is recalculated',asynct=>{
60
55
// Open the first key in the tree view and remove
61
56
awaitt.click(browserPage.treeViewButton);
57
+
58
+
// Verify the default separator
59
+
awaitt.expect(browserPage.treeViewSeparator.textContent).eql(':','The “:” (colon) not used as a default separator for namespaces');
60
+
// Verify that user can see that “:” (colon) used as a default separator for namespaces and see the number of keys found per each namespace
61
+
awaitt.expect(browserPage.treeViewKeysNumber.visible).ok('The user can not see the number of keys');
62
+
62
63
awaitt.expect(browserPage.treeViewDeviceFolder.visible).ok('The key folder is not displayed',{timeout: 30000});
// await t.expect(workbenchPage.monacoHintWithArguments.visible).ok('Hints with arguments are not displayed')
70
-
// //Remove hints with arguments
71
-
// await t.pressKey('esc');
72
-
// //Check no hints are displayed
73
-
// await t.expect(workbenchPage.monacoHintWithArguments.visible).notOk('Hints with arguments are still displayed')
74
-
// });
75
65
test('Verify that user can see the static list of arguments when he uses “Ctrl+Shift+Space” combination for already entered command for Windows',asynct=>{
Copy file name to clipboardExpand all lines: tests/e2e/tests/regression/workbench/scripting-area.e2e.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -118,7 +118,7 @@ test
118
118
// Check the result with sent command
119
119
awaitt.expect(awaitworkbenchPage.queryCardCommand.withExactText(command).exists).ok('The result of sent command is not displayed');
120
120
});
121
-
test.only('Verify that user can repeat commands by entering a number of repeats before the Redis command and see separate results per each command in Workbench',asynct=>{
121
+
test('Verify that user can repeat commands by entering a number of repeats before the Redis command and see separate results per each command in Workbench',asynct=>{
0 commit comments