From c4e0f90399f736bd2b4359e6bb9af523915c131c Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 19 Apr 2024 09:49:04 +0200 Subject: [PATCH] fix(tests): Fix selecting the correct tagging field Signed-off-by: Joas Schilling --- cypress/e2e/sidebarUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/sidebarUtils.ts b/cypress/e2e/sidebarUtils.ts index 425d85d79..e190ffef2 100644 --- a/cypress/e2e/sidebarUtils.ts +++ b/cypress/e2e/sidebarUtils.ts @@ -76,7 +76,7 @@ export function addTag(fileName: string, tag: string) { cy.get('.app-sidebar-header__menu button').click() cy.get('.action-button__icon.icon-tag').click() - cy.get('input#system-tags-input').type(`${tag}{enter}{esc}`) + cy.get('.system-tags input').type(`${tag}{enter}{esc}`) cy.wait(500) }