wait for downloads to be done (#1328)

This commit is contained in:
LawyZheng
2024-12-06 02:25:13 +08:00
committed by GitHub
parent da4e145941
commit df4d5df48d
3 changed files with 104 additions and 31 deletions

View File

@@ -250,6 +250,11 @@ class DownloadFileMaxSizeExceeded(SkyvernException):
super().__init__(f"Download file size exceeded the maximum allowed size of {max_size} MB.")
class NoFileDownloadTriggered(SkyvernException):
def __init__(self, element_id: str) -> None:
super().__init__(f"Clicking on element doesn't trigger the file download. element_id={element_id}")
class BitwardenBaseError(SkyvernException):
def __init__(self, message: str) -> None:
super().__init__(f"Bitwarden error: {message}")