( label: RegExp | string, page: Page )
| 976 | }; |
| 977 | |
| 978 | export const appIsOpen = async ( |
| 979 | label: RegExp | string, |
| 980 | page: Page |
| 981 | ): Promise<void> => { |
| 982 | await taskbarEntriesAreVisible({ page }); |
| 983 | await taskbarEntryIsVisible(label, { page }); |
| 984 | |
| 985 | await windowsAreVisible({ page }); |
| 986 | await windowTitlebarTextIsVisible(label, { page }); |
| 987 | }; |
| 988 | |
| 989 | export const selectArea = async ({ |
| 990 | container = SELECTION_SELECTOR, |
no test coverage detected