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(myRedisDatabasPage.dbNameList.withExactText(databaseParameters.databaseName).exists).ok('The existence of the database',{timeout: 60000});
26
+
awaitt.expect(myRedisDatabasePage.dbNameList.withExactText(databaseParameters.databaseName).exists).ok('The existence of the database',{timeout: 60000});
25
27
}
26
28
27
29
/**
@@ -68,9 +70,9 @@ export async function addOSSClusterDatabase(databaseParameters: OSSClusterParame
awaitt.expect(myRedisDatabasPage.databaseInfoMessage.exists).ok('Check that info message exists',{timeout: 60000});
73
+
awaitt.expect(myRedisDatabasePage.databaseInfoMessage.exists).ok('Check that info message exists',{timeout: 60000});
72
74
//Wait for database to be exist
73
-
awaitt.expect(myRedisDatabasPage.dbNameList.withExactText(databaseParameters.ossClusterDatabaseName).exists).ok('The existence of the database',{timeout: 60000});
75
+
awaitt.expect(myRedisDatabasePage.dbNameList.withExactText(databaseParameters.ossClusterDatabaseName).exists).ok('The existence of the database',{timeout: 60000});
74
76
}
75
77
76
78
/**
@@ -91,6 +93,20 @@ export async function addNewRECloudDatabase(cloudAPIAccessKey: string, cloudAPIS
@@ -50,8 +41,7 @@ test.skip('Verify that user can switches between Table and Text for FT.INFO and
50
41
awaitworkbenchPage.selectViewTypeTable();
51
42
awaitt.expect(awaitworkbenchPage.queryCardContainer.nth(0).find(workbenchPage.cssQueryTableResult).exists).ok(`The table view is switched for command FT.INFO`);
52
43
});
53
-
//skipped due the inaccessibility of the iframe
54
-
test.skip('Verify that user can switches between Table and Text for FT.SEARCH and see results corresponding to their views',asynct=>{
44
+
test('Verify that user can switches between Table and Text for FT.SEARCH and see results corresponding to their views',asynct=>{
@@ -61,8 +51,7 @@ test.skip('Verify that user can switches between Table and Text for FT.SEARCH an
61
51
awaitworkbenchPage.selectViewTypeTable();
62
52
awaitt.expect(awaitworkbenchPage.queryCardContainer.nth(0).find(workbenchPage.cssQueryTableResult).exists).ok(`The table view is switched for command FT.SEARCH`);
63
53
});
64
-
//skipped due the inaccessibility of the iframe
65
-
test.skip('Verify that user can switches between Table and Text for FT.AGGREGATE and see results corresponding to their views',asynct=>{
54
+
test('Verify that user can switches between Table and Text for FT.AGGREGATE and see results corresponding to their views',asynct=>{
66
55
constaggregateCommand=`FT.Aggregate ${indexName} * GROUPBY 0 REDUCE MAX 1 @price AS max_price`;
0 commit comments