diff --git a/src/frontend/tests/pui_command.spec.ts b/src/frontend/tests/pui_command.spec.ts index 127637beee..b28416b51a 100644 --- a/src/frontend/tests/pui_command.spec.ts +++ b/src/frontend/tests/pui_command.spec.ts @@ -4,6 +4,9 @@ import { doQuickLogin } from './login.js'; test('PUI - Quick Command', async ({ page }) => { await doQuickLogin(page); + await page + .getByRole('heading', { name: 'Welcome to your Dashboard,' }) + .waitFor(); // Open Spotlight with Keyboard Shortcut await page.locator('body').press(`${systemKey}+k`);