(label: string)
| 389 | let createdWorkspaceIds: string[]; |
| 390 | |
| 391 | function queryMenuItem(label: string): HTMLButtonElement | null { |
| 392 | const menuButtons = Array.from(document.querySelectorAll("button")) as HTMLButtonElement[]; |
| 393 | return menuButtons.find((button) => button.textContent?.includes(label)) ?? null; |
| 394 | } |
| 395 | |
| 396 | async function openWorkspaceActionsMenu(displayTitle: string): Promise<void> { |
| 397 | const menuButton = await waitFor( |
no outgoing calls
no test coverage detected