support uri format otp secrete (#3126)

This commit is contained in:
LawyZheng
2025-08-07 14:59:29 +08:00
committed by GitHub
parent 1a4bf1df1a
commit 44c9a81156
5 changed files with 44 additions and 26 deletions

View File

@@ -744,3 +744,8 @@ class ElementOutOfCurrentViewport(SkyvernException):
class ScriptNotFound(SkyvernHTTPException):
def __init__(self, script_id: str) -> None:
super().__init__(f"Script {script_id} not found")
class NoTOTPSecretFound(SkyvernException):
def __init__(self) -> None:
super().__init__("No TOTP secret found")