| 25 | |
| 26 | |
| 27 | class AccessibilityTreeNode(TypedDict): |
| 28 | nodeId: str |
| 29 | ignored: bool |
| 30 | role: dict[str, Any] |
| 31 | chromeRole: dict[str, Any] |
| 32 | name: dict[str, Any] |
| 33 | properties: list[dict[str, Any]] |
| 34 | childIds: list[str] |
| 35 | parentId: str |
| 36 | backendDOMNodeId: str |
| 37 | frameId: str |
| 38 | bound: list[float] | None |
| 39 | union_bound: list[float] | None |
| 40 | offsetrect_bound: list[float] | None |
| 41 | |
| 42 | |
| 43 | class DOMNode(TypedDict): |
nothing calls this directly
no outgoing calls
no test coverage detected