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