support new tab magic link logic (#3797)

This commit is contained in:
LawyZheng
2025-10-23 14:38:03 +08:00
committed by GitHub
parent b8525ff703
commit 87625d4c0f
10 changed files with 74 additions and 4 deletions

View File

@@ -218,6 +218,11 @@ class FailedToStopLoadingPage(SkyvernException):
super().__init__(f"Failed to stop loading page url {url}. Error message: {error_message}")
class EmptyBrowserContext(SkyvernException):
def __init__(self) -> None:
super().__init__("Browser context is empty")
class UnexpectedTaskStatus(SkyvernException):
def __init__(self, task_id: str, status: str) -> None:
super().__init__(f"Unexpected task status {status} for task {task_id}")