diff --git a/test/automation/src/sql/connectionDialog.ts b/test/automation/src/sql/connectionDialog.ts index c1b34584b6..4488fbd0e9 100644 --- a/test/automation/src/sql/connectionDialog.ts +++ b/test/automation/src/sql/connectionDialog.ts @@ -30,7 +30,7 @@ export class ConnectionDialog extends Dialog { private static readonly CONNECT_BUTTON_SELECTOR = '.modal .modal-footer a[aria-label="Connect"]:not(.disabled)'; async connect(): Promise { - await this.code.waitAndClick(ConnectionDialog.CONNECT_BUTTON_SELECTOR); + await this.code.waitAndClick(ConnectionDialog.CONNECT_BUTTON_SELECTOR, 50, 24); // adjust for potentially a notification being in the way return this.waitForDialogGone(); }