From 041ffd1c3f10057a1b4a29e9e42a3cfe18c2ca6d Mon Sep 17 00:00:00 2001 From: dat972 Date: Wed, 8 Jul 2026 21:43:52 -0500 Subject: [PATCH] dropped the wait timer on the search box causing an error --- fccs_export.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fccs_export.py b/fccs_export.py index 0720d7d..15b06cc 100755 --- a/fccs_export.py +++ b/fccs_export.py @@ -136,8 +136,9 @@ def find_search_box(main, ctrl, timeouts, log): def navigate_to_drawer(main, search_box, drawer_id, ctrl, timeouts, log): """Type the drawer ID into the search box and click Go.""" - search_box.wait("visible ready", timeout=timeouts["nav"]) - + # search_box is a control wrapper (from find_search_box), not a + # WindowSpecification, so it has no .wait() — it was already confirmed + # present/visible when located. set_edit_text works directly on it. search_box.set_edit_text("") search_box.set_edit_text(drawer_id) time.sleep(timeouts["settle"])