From 9389ec91012a3da8b9e45b5e1184173e1423b2e6 Mon Sep 17 00:00:00 2001 From: Lucy Zhang Date: Wed, 8 Sep 2021 09:24:37 -0400 Subject: [PATCH] increase python installation timeout to 5min (#17019) --- 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 471599b255..a0f4345ab2 100644 --- a/test/automation/src/sql/configurePythonDialog.ts +++ b/test/automation/src/sql/configurePythonDialog.ts @@ -51,7 +51,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, undefined, 600); // wait up to 1 minute for python installation + await this.code.waitForElement(installationCompleteNotification, undefined, 3000); // wait up to 5 minutes for python installation } }