Handle accessibility notifications
(notification, element)
| 18 | |
| 19 | |
| 20 | def notification_handler(notification, element): |
| 21 | """Handle accessibility notifications""" |
| 22 | print(f'Received notification: {notification}') |
| 23 | |
| 24 | |
| 25 | async def wait_for_app_ready(app, max_attempts=10, delay=2.5) -> bool: |
nothing calls this directly
no outgoing calls
no test coverage detected