From 4cd9661d4b560e72ecac4956e6a4169b82827409 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 3 Jun 2025 10:09:27 +0000 Subject: [PATCH] fixed path --- burp/start_burp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/burp/start_burp.sh b/burp/start_burp.sh index 844e216..4c55736 100644 --- a/burp/start_burp.sh +++ b/burp/start_burp.sh @@ -4,7 +4,7 @@ import time print("Waiting for Burp window...") time.sleep(10) -button = pyautogui.locateCenterOnScreen("/workspace/next_button.png", confidence=0.8) +button = pyautogui.locateCenterOnScreen("/app/burp/next_button.png", confidence=0.8) if button: print("Clicking on the 'Next' button...") pyautogui.click(button)