mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-08 18:42:20 +00:00
6 lines
170 B
TypeScript
6 lines
170 B
TypeScript
|
|
import { Page } from "@playwright/test";
|
||
|
|
|
||
|
|
export async function selectNewAccount(page: Page) {
|
||
|
|
await page.getByRole("link", { name: "Add another account" }).click();
|
||
|
|
}
|