mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-15 17:59:42 +00:00
extend select agent to support date picker (#2849)
This commit is contained in:
parent
7a96642c12
commit
cb17dbbb6f
6 changed files with 140 additions and 60 deletions
|
@ -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}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue