Skip to content

Commit a66d9d6

Browse files
committed
fix
1 parent 400336c commit a66d9d6

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

tests/e2e/pageObjects/dialogs/add-redis-database-dialog.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export class AddRedisDatabaseDialog {
5151
sshPrivateKeyInput = Selector('[data-testid=sshPrivateKey]');
5252
sshPassphraseInput = Selector('[data-testid=sshPassphrase]');
5353
timeoutInput = Selector('[data-testid=timeout]');
54-
urlInput = Selector('[data-testid=connection-url]');
5554
// DROPDOWNS
5655
caCertField = Selector('[data-testid=select-ca-cert]', { timeout: 500 });
5756
clientCertField = Selector('[data-testid=select-cert]', { timeout: 500 });

tests/e2e/tests/web/critical-path/database/connecting-to-the-db.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ test
242242
// Verify that 'redis://[email protected]:6379' default value prepopulated for connection URL field and the same for placeholder
243243
await t.expect(addDbDialog.connectionUrlInput.textContent).eql(`redis://[email protected]:6379`, 'Connection URL not prepopulated');
244244

245-
await t.typeText(addDbDialog.urlInput, codedUrl);
245+
await t.typeText(addDbDialog.connectionUrlInput, codedUrl);
246246
await t.click(addDbDialog.customSettingsButton);
247247
await t.expect(addDbDialog.databaseAliasInput.getAttribute('value')).eql(`${host}:${port}`, 'name is incorrected');
248248
await t.expect(addDbDialog.hostInput.getAttribute('value')).eql(`${host}`, 'host is incorrected');

0 commit comments

Comments
 (0)