extend select agent to support date picker (#2849)

This commit is contained in:
Shuchang Zheng 2025-07-01 14:12:39 +09:00 committed by GitHub
parent 7a96642c12
commit cb17dbbb6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 140 additions and 60 deletions

View file

@ -463,6 +463,11 @@ class FailToSelectByIndex(SkyvernException):
super().__init__(f"Failed to select by index. element_id={element_id}")
class EmptyDomOrHtmlTree(SkyvernException):
def __init__(self) -> None:
super().__init__("Empty dom or html tree")
class OptionIndexOutOfBound(SkyvernException):
def __init__(self, element_id: str):
super().__init__(f"Option index is out of bound. element_id={element_id}")