This commit is contained in:
nq
2026-05-10 14:37:20 +03:00
parent 89f0c32a15
commit f0814fe15b
5 changed files with 1529 additions and 404 deletions

1125
readme.md Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -107,7 +107,7 @@ def run_download(url: str):
wait_for_page_load(driver, timeout=20)
print(" ✓ Page loaded (eager).")
wait = WebDriverWait(driver, 10) # Reduced timeout
wait = WebDriverWait(driver, 5) # Reduced timeout
# === License checkbox (quick check) ===
try:
@@ -131,7 +131,7 @@ def run_download(url: str):
# === Wait for download ===
print(" Waiting for download (max 2 min)...")
success, files = is_download_finished(DOWNLOAD_PATH, timeout=120)
success, files = is_download_finished(DOWNLOAD_PATH, timeout=30)
if success and files:
print(f" ✓ Download completed! Files: {files}")
log_result(url, True)