From 928802329734e4fe23b8589330c58f0cd8caaf7f Mon Sep 17 00:00:00 2001 From: Break27 Date: Fri, 31 Jul 2026 17:45:20 +0800 Subject: [PATCH] fix: potential failure on showing import results --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 042d676..cd72731 100644 --- a/main.py +++ b/main.py @@ -504,7 +504,7 @@ def main(driver: WebDriver, logger = logging.getLogger('main')): logger.warning('Incomplete import detected; downloading 1 related document') flow.react(Sleep) - try: click(".mm-tbody table tbody tr:nth-child(1) td:nth-child(3) a", wait=False) + try: click(".mm-tbody table tbody tr:nth-child(1) td:nth-child(3) a") except: continue flow.react(Sleep)