From efcf3ac6eb6648ea974f74aef00fae5ea65f4aff Mon Sep 17 00:00:00 2001 From: Kevin Moturi Date: Sat, 27 Jul 2024 06:11:57 -0500 Subject: [PATCH] Update LocalSeleniumCrawlerStrategy to resolve ChromeDriver version mismatch issue This resolves the following error: `selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 114` Windows users are getting. --- crawl4ai/crawler_strategy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawl4ai/crawler_strategy.py b/crawl4ai/crawler_strategy.py index 626b72d..6d4f0a0 100644 --- a/crawl4ai/crawler_strategy.py +++ b/crawl4ai/crawler_strategy.py @@ -342,4 +342,4 @@ def take_screenshot(self) -> str: return img_base64 def quit(self): - self.driver.quit() \ No newline at end of file + self.driver.quit()