mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-11 21:52:32 +00:00
13 lines
449 B
TypeScript
13 lines
449 B
TypeScript
import { test } from "@playwright/test";
|
|
|
|
test("username and password", async ({ page }) => {
|
|
await page.goto("/");
|
|
const loginname = page.getByLabel("Loginname");
|
|
await loginname.pressSequentially("zitadel-admin@zitadel.localhost");
|
|
await loginname.press("Enter");
|
|
const password = page.getByLabel("Password");
|
|
await password.pressSequentially("Password1!");
|
|
await password.press("Enter");
|
|
await page.getByText("Skip").click();
|
|
});
|