2021-06-22 21:34:44 +00:00
|
|
|
import { describe, test, expect } from "./baseFixture"
|
2021-03-17 23:23:17 +00:00
|
|
|
|
2021-06-25 16:20:44 +00:00
|
|
|
describe("logout", true, () => {
|
|
|
|
test("should be able logout", async ({ codeServerPage }) => {
|
2021-03-17 23:23:17 +00:00
|
|
|
// Click the Application menu
|
2021-06-10 13:09:38 +00:00
|
|
|
await codeServerPage.page.click("[aria-label='Application Menu']")
|
2021-03-17 23:23:17 +00:00
|
|
|
|
|
|
|
// See the Log out button
|
|
|
|
const logoutButton = "a.action-menu-item span[aria-label='Log out']"
|
2021-06-10 13:09:38 +00:00
|
|
|
expect(await codeServerPage.page.isVisible(logoutButton)).toBe(true)
|
2021-03-17 23:23:17 +00:00
|
|
|
|
2021-06-10 13:09:38 +00:00
|
|
|
await codeServerPage.page.hover(logoutButton)
|
2021-03-17 23:23:17 +00:00
|
|
|
|
2021-04-02 19:32:24 +00:00
|
|
|
// Recommended by Playwright for async navigation
|
|
|
|
// https://github.com/microsoft/playwright/issues/1987#issuecomment-620182151
|
2021-06-10 13:09:38 +00:00
|
|
|
await Promise.all([codeServerPage.page.waitForNavigation(), codeServerPage.page.click(logoutButton)])
|
|
|
|
const currentUrl = codeServerPage.page.url()
|
2021-06-22 21:34:44 +00:00
|
|
|
expect(currentUrl).toBe(`${await codeServerPage.address()}/login`)
|
2021-03-17 23:23:17 +00:00
|
|
|
})
|
|
|
|
})
|