From d996da8c45ee9cceee2be357e3d3721b57f35c4c Mon Sep 17 00:00:00 2001 From: Frank Noirot Date: Thu, 10 Apr 2025 13:37:18 -0400 Subject: [PATCH] Remove unnecessary click in test. `fill` focuses already --- e2e/playwright/fixtures/homePageFixture.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/e2e/playwright/fixtures/homePageFixture.ts b/e2e/playwright/fixtures/homePageFixture.ts index 07044ae37..09d77b014 100644 --- a/e2e/playwright/fixtures/homePageFixture.ts +++ b/e2e/playwright/fixtures/homePageFixture.ts @@ -99,7 +99,6 @@ export class HomePageFixture { createAndGoToProject = async (projectTitle = 'untitled') => { await this.projectsLoaded() await this.projectButtonNew.click() - await this.projectTextName.click() await this.projectTextName.fill(projectTitle) await this.projectButtonContinue.click() }