remove hard waiting time in scraping (#3195)

This commit is contained in:
LawyZheng
2025-08-15 02:24:59 +08:00
committed by GitHub
parent f971cf8e58
commit cac4792f38
3 changed files with 45 additions and 8 deletions

View File

@@ -749,3 +749,8 @@ class ScriptNotFound(SkyvernHTTPException):
class NoTOTPSecretFound(SkyvernException):
def __init__(self) -> None:
super().__init__("No TOTP secret found")
class NoElementFound(SkyvernException):
def __init__(self) -> None:
super().__init__("No element found.")