← Back to wkappbot-win32
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.

user/developer
uiaelectronchromevscodedepthproject

Steps

  1. Use recursive Walk(root, depth=0, maxDepth=2...
  2. Call FindAllChildren at each node, recurse
  3. Do NOT use FindAllDescendants() for Electron...