wkappbot-win32
★☆☆
Electron UIA deep tree traversal
FindAllDescendants() misses nodes in deep Electron UIA trees (depth ~18-20). Use recursive FindAllChildren walk with max depth 25 instead.
Steps
- Use recursive Walk(root, depth=0, maxDepth=2...
- Call FindAllChildren at each node, recurse
- Do NOT use FindAllDescendants() for Electron...