From 179921a131cb49ce888f02c84181a5b28b8f2792 Mon Sep 17 00:00:00 2001 From: UncleCode Date: Wed, 2 Apr 2025 19:01:30 +0800 Subject: [PATCH] fix(crawler): update get_page call to include additional return value --- crawl4ai/async_crawler_strategy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawl4ai/async_crawler_strategy.py b/crawl4ai/async_crawler_strategy.py index 37aa0962..9e395dfa 100644 --- a/crawl4ai/async_crawler_strategy.py +++ b/crawl4ai/async_crawler_strategy.py @@ -505,7 +505,7 @@ class AsyncPlaywrightCrawlerStrategy(AsyncCrawlerStrategy): ) # Get page for session - page, context = await self.browser_manager.get_page(crawlerRunConfig=config) + page, context, _ = await self.browser_manager.get_page(crawlerRunConfig=config) # await page.goto(URL)