From 7678704fe2cf290036bd2f5322a04aef9b34e09e Mon Sep 17 00:00:00 2001 From: J-Doiron <139803019+J-Doiron@users.noreply.github.com> Date: Wed, 12 Feb 2025 15:32:59 -0800 Subject: [PATCH] Changed word to look for and added additional wait time --- horizonzdr/hzdr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/horizonzdr/hzdr.py b/horizonzdr/hzdr.py index 8f6ea4d..164301a 100644 --- a/horizonzdr/hzdr.py +++ b/horizonzdr/hzdr.py @@ -62,7 +62,7 @@ def run_benchmark() -> tuple[float]: time.sleep(10) # Make sure the game started correctly - if kerasService.wait_for_word(word="remastered", timeout=30, interval=1) is None: + if kerasService.wait_for_word(word="overlay", timeout=30, interval=1) is None: logging.info("Could not find the main menu. Did the game load?") sys.exit(1) @@ -150,7 +150,7 @@ def run_benchmark() -> tuple[float]: terminate_processes(PROCESS_NAME) am.create_manifest() - + time.sleep(15) return test_start_time, test_end_time