increase wait time for python installation (#12993)

This commit is contained in:
Lucy Zhang
2020-10-19 13:36:24 -07:00
committed by GitHub
parent 873668a7cf
commit eb36a275a2

View File

@@ -39,7 +39,7 @@ export class ConfigurePythonDialog extends Dialog {
private async _waitForInstallationComplete(): Promise<void> {
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
}
}