fix hidden input element (#2314)

This commit is contained in:
Shuchang Zheng
2025-05-08 22:52:12 -07:00
committed by GitHub
parent 9efea944ef
commit d667841d02
4 changed files with 23 additions and 0 deletions

View File

@@ -619,6 +619,13 @@ class InteractWithDisabledElement(SkyvernException):
)
class InputToInvisibleElement(SkyvernException):
def __init__(self, element_id: str):
super().__init__(
f"The element(id={element_id}) now is not visible. Try to interact with other elements, or try to interact with it later when it's visible."
)
class FailedToParseActionInstruction(SkyvernException):
def __init__(self, reason: str | None, error_type: str | None):
super().__init__(