From b770dd46d5aebb0cb408edd84f5a6e6e6704f3e1 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Thu, 13 Apr 2023 17:51:47 +0530 Subject: [PATCH] fix Test --- cypress/e2e/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/util.ts b/cypress/e2e/util.ts index fa9040a8..e503577f 100644 --- a/cypress/e2e/util.ts +++ b/cypress/e2e/util.ts @@ -9,7 +9,7 @@ export const typeInEditor = ( text: string, { bottom = true, newline = false }: EditorOptions = {} ) => { - cy.get('#editor textarea:first').click(); + cy.get('#editor').click(); if (bottom) { cy.focused().type('{pageDown}'); }