import { chromium, Page, Browser, BrowserContext } from "playwright" import { CODE_SERVER_ADDRESS, PASSWORD, E2E_VIDEO_DIR } from "../utils/constants" describe("logout", () => { let browser: Browser let page: Page let context: BrowserContext beforeAll(async () => { browser = await chromium.launch() context = await browser.newContext({ recordVideo: { dir: E2E_VIDEO_DIR }, }) }) afterAll(async () => { await browser.close() }) beforeEach(async () => { page = await context.newPage() }) afterEach(async () => { await page.close() // Remove password from local storage await context.clearCookies() }) it("should be able login and logout", async () => { await page.goto(CODE_SERVER_ADDRESS) // Type in password await page.fill(".password", PASSWORD) // Click the submit button and login await page.click(".submit") // See the editor const codeServerEditor = await page.isVisible(".monaco-workbench") expect(codeServerEditor).toBeTruthy() // Click the Application menu await page.click("[aria-label='Application Menu']") // See the Log out button const logoutButton = "a.action-menu-item span[aria-label='Log out']" expect(await page.isVisible(logoutButton)) await page.hover(logoutButton) await page.click(logoutButton) // it takes a second to navigate // and since page.url comes back immediately // we need this waitForNavigation, otherwise it will check // before navigation has finished and fail await page.waitForNavigation({ url: `${CODE_SERVER_ADDRESS}/login` }) const currentUrl = page.url() expect(currentUrl).toBe(`${CODE_SERVER_ADDRESS}/login`) }) })