mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 03:23:40 +00:00
chore: passkey register
This commit is contained in:
@@ -9,4 +9,13 @@ export async function changePassword(page: Page, loginname: string, password: st
|
||||
async function changePasswordScreen(page: Page, password1: string, password2: string) {
|
||||
await page.getByTestId('password-text-input').pressSequentially(password1);
|
||||
await page.getByTestId('password-confirm-text-input').pressSequentially(password2);
|
||||
}
|
||||
}
|
||||
|
||||
export async function passwordScreen(page: Page, password: string) {
|
||||
await page.getByTestId("password-text-input").pressSequentially(password);
|
||||
}
|
||||
|
||||
export async function registerPasswordScreen(page: Page, password1: string, password2: string) {
|
||||
await page.getByTestId('password-text-input').pressSequentially(password1);
|
||||
await page.getByTestId('password-confirm-text-input').pressSequentially(password2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user