make test more reproducible
This commit is contained in:
parent
5e08d7f67d
commit
fd6ccde535
|
|
@ -4,6 +4,9 @@ import { doQuickLogin } from './login.js';
|
||||||
|
|
||||||
test('PUI - Quick Command', async ({ page }) => {
|
test('PUI - Quick Command', async ({ page }) => {
|
||||||
await doQuickLogin(page);
|
await doQuickLogin(page);
|
||||||
|
await page
|
||||||
|
.getByRole('heading', { name: 'Welcome to your Dashboard,' })
|
||||||
|
.waitFor();
|
||||||
|
|
||||||
// Open Spotlight with Keyboard Shortcut
|
// Open Spotlight with Keyboard Shortcut
|
||||||
await page.locator('body').press(`${systemKey}+k`);
|
await page.locator('body').press(`${systemKey}+k`);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue