({ page }: TestProps)
| 311 | .click({ button: right ? "right" : undefined, clickCount }); |
| 312 | |
| 313 | export const clickCloseWindow = async ({ page }: TestProps): Promise<void> => |
| 314 | page |
| 315 | .locator(WINDOW_TITLEBAR_SELECTOR) |
| 316 | .getByLabel(/^Close$/) |
| 317 | .click(); |
| 318 | |
| 319 | export const clickContextMenuEntry = async ( |
| 320 | label: RegExp | string, |