Skip to content

Commit 03ce519

Browse files
committed
updates
1 parent 8dd2b6c commit 03ce519

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

tests/e2e/pageObjects/browser-page.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,7 @@ export class BrowserPage extends InstancePage {
572572
*/
573573
async deleteKeyByName(keyName: string): Promise<void> {
574574
await this.searchByKeyName(keyName);
575+
await t.hover(this.keyNameInTheList);
575576
await t.click(this.keyNameInTheList);
576577
await t.click(this.deleteKeyButton);
577578
await t.click(this.confirmDeleteKeyButton);

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ test
4444
await t.expect(myRedisDatabasePage.AddRedisDatabase.disabledDatabaseInfo.nth(1).getAttribute('title')).contains(port, 'Wrong port value');
4545
await t.click(myRedisDatabasePage.AddRedisDatabase.addRedisDatabaseButton);
4646
// wait for db is added
47-
await t.wait(7_000);
47+
await t.wait(10_000);
4848
await t.expect(workbenchPage.closeEnablementPage.exists).ok('Redirection to Workbench tutorial is not correct');
4949
});
5050

@@ -76,7 +76,7 @@ test
7676
};
7777

7878
await t.navigateTo(generateLink(connectUrlParams));
79-
await t.wait(7_000);
79+
await t.wait(10_000);
8080
await t.expect(workbenchPage.closeEnablementPage.exists).ok('Redirection to Workbench tutorial is not correct');
8181

8282
//Verify that the same db is not added

tests/e2e/tests/web/regression/browser/resize-columns.e2e.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { rte } from '../../../../helpers/constants';
77
import { commonUrl, ossStandaloneConfig } from '../../../../helpers/conf';
88
import { DatabaseAPIRequests } from '../../../../helpers/api/api-database';
99
import { Common } from '../../../../helpers/common';
10+
import { t } from 'testcafe';
1011

1112
const myRedisDatabasePage = new MyRedisDatabasePage();
1213
const browserPage = new BrowserPage();
@@ -53,6 +54,8 @@ fixture `Resize columns in Key details`
5354
// Add new databases using API
5455
await databaseHelper.acceptLicenseTerms();
5556
await databaseAPIRequests.addNewStandaloneDatabasesApi(databasesForAdding);
57+
console.log(databasesForAdding[0].databaseName);
58+
await t.wait(5_000);
5659
// Reload Page
5760
await myRedisDatabasePage.reloadPage();
5861
await myRedisDatabasePage.clickOnDBByName(databasesForAdding[0].databaseName);

0 commit comments

Comments
 (0)