({ page }: TestProps)
| 372 | .click(); |
| 373 | |
| 374 | export const clickMinimizeWindow = async ({ page }: TestProps): Promise<void> => |
| 375 | page |
| 376 | .locator(WINDOW_TITLEBAR_SELECTOR) |
| 377 | .getByLabel(/^Minimize$/) |
| 378 | .click(); |
| 379 | |
| 380 | export const clickTaskbarEntry = async ( |
| 381 | label: RegExp | string, |