From 33e7c0491c0929630294995c8a99b026a6d6a703 Mon Sep 17 00:00:00 2001 From: bymyself Date: Sat, 15 Nov 2025 23:51:18 -0800 Subject: [PATCH] fix: Use correct selectors for cloud login form --- browser_tests/globalSetupCloud.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser_tests/globalSetupCloud.ts b/browser_tests/globalSetupCloud.ts index 02ff6be23..239bf2199 100644 --- a/browser_tests/globalSetupCloud.ts +++ b/browser_tests/globalSetupCloud.ts @@ -32,8 +32,8 @@ export default async function globalSetupCloud(config: FullConfig) { }) // Fill in email and password - await page.fill('input[type="email"]', CLOUD_TEST_EMAIL) - await page.fill('input[type="password"]', CLOUD_TEST_PASSWORD) + await page.fill('#cloud-sign-in-email', CLOUD_TEST_EMAIL) + await page.fill('#cloud-sign-in-password', CLOUD_TEST_PASSWORD) // Click login button await page.click('button[type="submit"]')