refactor: remove debug print

This commit is contained in:
martin legrand
2025-03-23 21:24:05 +01:00
parent e74bbe4044
commit 8c77f3eddb
3 changed files with 2 additions and 2 deletions
-1
View File
@@ -308,7 +308,6 @@ class Browser:
if not xpath:
continue
element = self.driver.find_element(By.XPATH, xpath)
print("found-->", element)
input_type = (element.get_attribute("type") or "text").lower()
if input_type in ["checkbox", "radio"]:
is_checked = element.is_selected()