diff --git a/test/goHome.test.ts b/test/goHome.test.ts index 31cd773c675cf431bad6e22d924c558ab19269e4..40d6a8382c59c6e5e41a2fe88c2e269fb765bb6c 100644 --- a/test/goHome.test.ts +++ b/test/goHome.test.ts @@ -73,8 +73,11 @@ describe("go home", () => { // In case the page takes a long time to load await page.goto(CODE_SERVER_ADDRESS, { waitUntil: "domcontentloaded" }) + // Make sure the editor actually loaded + expect(await page.isVisible("div.monaco-workbench")) + // Click the Home menu - await page.click(".home-bar ul[aria-label='Home'] li") + await page.click("[aria-label='Application Menu']") // See the Go Home button const goHomeButton = "a.action-menu-item span[aria-label='Go Home']" expect(await page.isVisible(goHomeButton))