fix: update registration name label to match with form

This commit is contained in:
ramvignesh-b
2026-04-26 19:25:31 +05:30
parent 25d5bf142a
commit 1f47b6f4dd
+1 -1
View File
@@ -23,7 +23,7 @@ export async function registerAndLogin(
// 1. Registration
logger.info(`[Auth] Registering user: ${email}`);
await page.goto("/onboard");
await page.getByLabel(/full name/i).fill(fullName);
await page.getByLabel(/pen name/i).fill(fullName);
await page.getByLabel("Email", { exact: true }).fill(email);
await page.getByLabel("Password", { exact: true }).fill(password);
await page.getByLabel(/confirm password/i).fill(password);