feat: add hover action support (#3994)

Co-authored-by: LawyZheng <lawyzheng1106@gmail.com>
This commit is contained in:
Mohamed Khalil
2025-12-09 17:27:26 +02:00
committed by GitHub
parent 0e8d667959
commit f49b07f30d
22 changed files with 281 additions and 13 deletions

View File

@@ -501,6 +501,11 @@ class FailToClick(SkyvernException):
super().__init__(f"Failed to click({anchor}). element_id={element_id}, error_msg={msg}")
class FailToHover(SkyvernException):
def __init__(self, element_id: str, msg: str):
super().__init__(f"Failed to hover. element_id={element_id}, error_msg={msg}")
class FailToSelectByLabel(SkyvernException):
def __init__(self, element_id: str):
super().__init__(f"Failed to select by label. element_id={element_id}")