From 1f47b6f4dd5bbd0390f13cfdbcd61428c9b5527c Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Sun, 26 Apr 2026 19:25:31 +0530 Subject: [PATCH] fix: update registration name label to match with form --- frontend/e2e/utils/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/e2e/utils/auth.ts b/frontend/e2e/utils/auth.ts index 9210011..78a4614 100644 --- a/frontend/e2e/utils/auth.ts +++ b/frontend/e2e/utils/auth.ts @@ -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);