diff --git a/aider/scrape.py b/aider/scrape.py index 7977a8548..8bd46f1c8 100755 --- a/aider/scrape.py +++ b/aider/scrape.py @@ -159,7 +159,8 @@ class Scraper: try: response = page.goto(url, wait_until="networkidle", timeout=5000) except PlaywrightTimeoutError: - self.print_error(f"Timeout while loading {url}") + self.print_error(f"Page didn't quiesce, scraping content anyway") + response = None except PlaywrightError as e: self.print_error(f"Error navigating to {url}: {str(e)}") return None, None