From 096e5555b6dd86624bbe7f461bab53e77337c18c Mon Sep 17 00:00:00 2001 From: Jackson Kearl Date: Thu, 18 Feb 2021 18:57:14 -0800 Subject: [PATCH] Allow welcome page to not be active on account of focus potentially going to a getting started item. --- test/automation/src/application.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/automation/src/application.ts b/test/automation/src/application.ts index 066b8f63fde..35ee19cc0c5 100644 --- a/test/automation/src/application.ts +++ b/test/automation/src/application.ts @@ -73,7 +73,7 @@ export class Application { await this.code.waitForElement('.explorer-folders-view'); if (expectWalkthroughPart) { - await this.code.waitForActiveElement(`.editor-instance > div > div.welcomePageFocusElement[tabIndex="0"]`); + await this.code.waitForElement(`.editor-instance > div > div.welcomePageFocusElement[tabIndex="0"]`); } }