From a8b3918fca9fbc8e9f5a7f3539cd13e4a05096b0 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 10 Feb 2025 10:49:40 +0100 Subject: [PATCH] Browser Steps - Fixing 'Uncheck checkbox' #2958 --- changedetectionio/blueprint/browser_steps/browser_steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/blueprint/browser_steps/browser_steps.py b/changedetectionio/blueprint/browser_steps/browser_steps.py index b9765bacd..d4f3a9862 100644 --- a/changedetectionio/blueprint/browser_steps/browser_steps.py +++ b/changedetectionio/blueprint/browser_steps/browser_steps.py @@ -188,7 +188,7 @@ class steppable_browser_interface(): self.page.locator(selector).check(timeout=1000) def action_uncheck_checkbox(self, selector, value): - self.page.locator(selector, timeout=1000).uncheck(timeout=1000) + self.page.locator(selector).uncheck(timeout=1000) # Responsible for maintaining a live 'context' with the chrome CDP