From eb36a275a2b306fc3762ee496b2b42993b5be2a5 Mon Sep 17 00:00:00 2001 From: Lucy Zhang Date: Mon, 19 Oct 2020 13:36:24 -0700 Subject: [PATCH] increase wait time for python installation (#12993) --- test/automation/src/sql/configurePythonDialog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/automation/src/sql/configurePythonDialog.ts b/test/automation/src/sql/configurePythonDialog.ts index 9feb8e3982..2279e09e6b 100644 --- a/test/automation/src/sql/configurePythonDialog.ts +++ b/test/automation/src/sql/configurePythonDialog.ts @@ -39,7 +39,7 @@ export class ConfigurePythonDialog extends Dialog { private async _waitForInstallationComplete(): Promise { const installationCompleteNotification = '.notifications-toasts div[aria-label="Notebook dependencies installation is complete, source: Notebook Core Extensions (Extension), notification"]'; - await this.code.waitForElement(installationCompleteNotification); + await this.code.waitForElement(installationCompleteNotification, undefined, 600); // wait up to 1 minute for python installation } }