You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some applications have massive accessibility trees (like Notes.app, which exposes every note ever created).
This can make general integrations that do things like "search for AXButtons" time out and hit watchdogs. A few extra parameters to find() would allow them to avoid searching too deeply. This can save us from having to write custom logic for each app.
Allow for find() / find_one() to:
Only query for elements that should be visible, based on their position.
Set a maximum search time (in seconds) and/or a maximum number of elements to visit
The text was updated successfully, but these errors were encountered:
Some applications have massive accessibility trees (like Notes.app, which exposes every note ever created).
This can make general integrations that do things like "search for AXButtons" time out and hit watchdogs. A few extra parameters to
find()
would allow them to avoid searching too deeply. This can save us from having to write custom logic for each app.Allow for
find()
/find_one()
to:The text was updated successfully, but these errors were encountered: