(
label: RegExp | string,
{ page }: TestProps,
right = false
)
| 172 | page.locator(START_BUTTON_SELECTOR).click(right ? RIGHT_CLICK : undefined); |
| 173 | |
| 174 | export const clickStartMenuEntry = async ( |
| 175 | label: RegExp | string, |
| 176 | { page }: TestProps, |
| 177 | right = false |
| 178 | ): Promise<void> => |
| 179 | page |
| 180 | .locator(START_MENU_SELECTOR) |
| 181 | .getByLabel(label, EXACT) |
| 182 | .click(right ? RIGHT_CLICK : undefined); |
| 183 | |
| 184 | export const clickTaskbar = async ( |
| 185 | { page }: TestProps, |
no outgoing calls
no test coverage detected