From 5572ae88c37a11a00935e94a15151b6072b9f27e Mon Sep 17 00:00:00 2001 From: Dave Gordon Date: Sat, 11 May 2024 12:02:16 +0100 Subject: [PATCH] [playwright] feat: Page object examples --- playwright/tests/note.spec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/playwright/tests/note.spec.ts b/playwright/tests/note.spec.ts index 63d15e45..fe97e8d4 100644 --- a/playwright/tests/note.spec.ts +++ b/playwright/tests/note.spec.ts @@ -46,8 +46,6 @@ test('Notes App e2e flow', { tag: ['@PRODUCTION'] }, async () => { }); await test.step('Should be able to Edit a Note', async () => { - await notesPage.note().first().click(); - await expect(notesPage.saveNoteButton()).toBeVisible(); await notesPage.editNote({ title: EDITED_NOTE_TITLE, content: EDITED_NOTE_CONTENT,