Skip to content

Commit a7ceb54

Browse files
committed
test
1 parent 2f68474 commit a7ceb54

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/e2e/tests/web/critical-path/url-handling/url-handling.e2e.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ test
3636
await t.navigateTo(generateLink(connectUrlParams));
3737
await t.expect(await myRedisDatabasePage.AddRedisDatabase.disabledDatabaseInfo.nth(0).getAttribute('title')).contains(host, 'Wrong host value');
3838
await t.expect(await myRedisDatabasePage.AddRedisDatabase.disabledDatabaseInfo.nth(1).getAttribute('title')).contains(port, 'Wrong port value');
39-
await t.click(await myRedisDatabasePage.AddRedisDatabase.addRedisDatabaseButton);
39+
await t.click(myRedisDatabasePage.AddRedisDatabase.addRedisDatabaseButton);
4040
// wait for db is added
41-
await t.wait(3_000);
41+
await t.wait(10_000);
4242
await t.expect(await workbenchPage.closeEnablementPage.exists).ok('Redirection to Workbench tutorial is not correct');
4343
});
4444

@@ -70,12 +70,12 @@ test
7070
};
7171

7272
await t.navigateTo(generateLink(connectUrlParams));
73-
await t.wait(7_000);
73+
await t.wait(15_000);
7474
await t.expect(await workbenchPage.closeEnablementPage.exists).ok('Redirection to Workbench tutorial is not correct');
7575

7676
//Verify that the same db is not added
7777
await t.navigateTo(generateLink(connectUrlParams));
78-
await t.click(await workbenchPage.NavigationPanel.myRedisDBButton);
78+
await t.click(workbenchPage.NavigationPanel.myRedisDBButton);
7979
await t.expect(browserPage.notification.exists).notOk({ timeout: 10000 });
8080
await t.expect(await myRedisDatabasePage.dbNameList.child('span').withExactText(databaseName).count).eql(2, 'the same db is added twice');
8181
});

0 commit comments

Comments
 (0)