current view coordinate click (#3001)

This commit is contained in:
LawyZheng
2025-07-21 17:31:54 +08:00
committed by GitHub
parent 85857e548d
commit 8c72538d1c
3 changed files with 21 additions and 1 deletions

View File

@@ -739,3 +739,8 @@ class BrowserSessionNotFound(SkyvernHTTPException):
class APIKeyNotFound(SkyvernHTTPException):
def __init__(self, organization_id: str) -> None:
super().__init__(f"No valid API key token found for organization {organization_id}")
class ElementOutOfCurrentViewport(SkyvernException):
def __init__(self, element_id: str):
super().__init__(f"Element {element_id} is out of current viewport")