MCPcopy Create free account
hub / github.com/DustinBrett/daedalOS / appIsOpen

Function appIsOpen

e2e/functions.ts:978–987  ·  view source on GitHub ↗
(
  label: RegExp | string,
  page: Page
)

Source from the content-addressed store, hash-verified

976};
977
978export 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
989export const selectArea = async ({
990 container = SELECTION_SELECTOR,

Callers 2

Desktop.spec.tsFile · 0.90

Calls 4

taskbarEntriesAreVisibleFunction · 0.85
taskbarEntryIsVisibleFunction · 0.85
windowsAreVisibleFunction · 0.85

Tested by

no test coverage detected