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 user can see message inside Monitor "Running Monitor will decrease throughput, avoid running it in production databases." when opens it for the first time
awaitmonitorPage.monitorWarningMessage.withText('Running Profiler will decrease throughput, avoid running it in production databases');
50
+
awaitt.expect(monitorPage.monitorWarningMessage.withText('Running Profiler will decrease throughput, avoid running it in production databases').exists).ok('Profiler warning message is correct');
49
51
//Verify that user can run Monitor by clicking "Run" command in the message inside Monitor
50
52
awaitt.click(monitorPage.startMonitorButton);
51
53
awaitt.expect(monitorPage.monitorIsStartedText.innerText).eql('Profiler is started.');
awaitt.expect(myRedisDatabasePage.dbNameList.withExactText(newDatabaseName).exists).ok('The database with new alias is in the list',{timeout: 60000});
37
+
awaitt.expect(myRedisDatabasePage.dbNameList.withExactText(ossStandaloneConfig.databaseName).exists).notOk('The database with previous alias is not in the list',{timeout: 60000});
0 commit comments