Corrected "Login" & "Logout" to verbs (EN) (#4320)

Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
This commit is contained in:
James Cocker
2024-01-13 21:35:11 +00:00
committed by GitHub
parent 17e284f011
commit 8456912ae3
3 changed files with 4 additions and 4 deletions

View File

@@ -38,6 +38,6 @@ test("logout", async ({ page }, testInfo) => {
await page.goto("./dashboard");
await login(page);
await page.getByText("A", { exact: true }).click();
await page.getByRole("button", { name: "Logout" }).click();
await page.getByRole("button", { name: "Log out" }).click();
await screenshot(testInfo, page);
});

View File

@@ -22,6 +22,6 @@ export async function login(page) {
await page.getByPlaceholder("Username").press("Tab");
await page.getByPlaceholder("Password").fill("admin123");
await page.getByLabel("Remember me").check();
await page.getByRole("button", { name: "Login" }).click();
await page.getByRole("button", { name: "Log in" }).click();
await page.isVisible("text=Add New Monitor");
}