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
constindexDbMessage='When the database is added, you can select logical databases only in CLI. To work with other logical databases in Browser and Workbench, add another database with the same host and port, but a different database index.';
@@ -33,5 +32,6 @@ test('Verify that user can add DB with logical index via host and port from Add
33
32
// Verify that the database is in the list
34
33
awaitt.expect(myRedisDatabasePage.dbNameList.withText(ossStandaloneConfig.databaseName).exists).ok('Database not exist',{timeout: 10000});
35
34
// Verify that if user adds DB with logical DB > 0, DB name contains postfix "space+[{database index}]"
36
-
awaitt.expect(myRedisDatabasePage.dbNameList.textContent).eql(`${ossStandaloneConfig.databaseName} [${index}]`,'The postfix is not added to the database name',{timeout: 10000});
35
+
// Verify that user can see the db{index} instead of {index} in database alias
36
+
awaitt.expect(myRedisDatabasePage.dbNameList.textContent).eql(`${ossStandaloneConfig.databaseName} [db${index}]`,'The postfix is not added to the database name',{timeout: 10000});
0 commit comments