From 86fcd05eff0a4399530735e856a364287b3d083f Mon Sep 17 00:00:00 2001 From: Anthony Dresser Date: Mon, 10 Aug 2020 21:43:27 -0700 Subject: [PATCH] Fix smoke tests (#11734) * add small timeout to address timeout issues in smoke tests * fix comment * longer wait * fix smoketests * redisable web --- test/automation/src/sql/connectionDialog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }