mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-11 07:54:37 +00:00
refactor select2 (#485)
This commit is contained in:
parent
b300f9dcf0
commit
be86a33c3b
5 changed files with 281 additions and 95 deletions
|
@ -297,3 +297,10 @@ class MissingElementDict(SkyvernException):
|
|||
class MissingElementInIframe(SkyvernException):
|
||||
def __init__(self, element_id: str) -> None:
|
||||
super().__init__(f"Found no iframe includes the element. element_id={element_id}")
|
||||
|
||||
|
||||
class InputActionOnSelect2Dropdown(SkyvernException):
|
||||
def __init__(self, element_id: str):
|
||||
super().__init__(
|
||||
f"Input action on a select element, please try to use select action on this element. element_id={element_id}"
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue