diff --git a/frontend/e2e/notification-deep-link.spec.ts b/frontend/e2e/notification-deep-link.spec.ts index 68fdee1f..e8b3848d 100644 --- a/frontend/e2e/notification-deep-link.spec.ts +++ b/frontend/e2e/notification-deep-link.spec.ts @@ -92,7 +92,9 @@ test.describe('Notification deep-link scroll', () => { await openDeepLink(page); // Transcribe mode was auto-entered — Fertig button is visible - await expect(page.getByRole('button', { name: 'Fertig' })).toBeVisible({ timeout: 15_000 }); + await expect(page.getByRole('button', { name: 'Fertig', exact: true })).toBeVisible({ + timeout: 15_000 + }); // The target comment article is in the DOM and visible const article = page.locator(`#comment-${commentId}`);