(
{ page }: TestProps,
right = false
)
| 166 | page.locator(SEARCH_BUTTON_SELECTOR).click(right ? RIGHT_CLICK : undefined); |
| 167 | |
| 168 | export const clickStartButton = async ( |
| 169 | { page }: TestProps, |
| 170 | right = false |
| 171 | ): Promise<void> => |
| 172 | page.locator(START_BUTTON_SELECTOR).click(right ? RIGHT_CLICK : undefined); |
| 173 | |
| 174 | export const clickStartMenuEntry = async ( |
| 175 | label: RegExp | string, |
no outgoing calls
no test coverage detected