【Selenium】Chrome 119に更新後、WebDriverException発生
詳細
発生内容
Chromeを118から119に更新してSeleniumを起動したところ、以下のエラーが発生しました。
selenium.common.exceptions.WebDriverException: Message: unknown error: result.webdriverValue.value list is missing or empty in Runtime.callFunctionOn response
発生環境
OS:Windows 11
Python:3.11.6
Selenium:4.8.2
Chrome:119.0.6045.106
chromedriver-binary:118.0.5993.70.0
解決策
Chrome driverのバージョンをChromeと同じバージョン(119.0.6045.xx)に更新すれば解決します。
https://pypi.org/project/chromedriver-binary/119.0.6045.105.0/
> pip install chromedriver-binary==119.0.6045.105.0
公式のissuesでもドライバー更新すれば解決したと言われていました。
https://github.com/SeleniumHQ/selenium/issues/13084
もし参考になりましたら、♡(スキ)をクリックしてもらえると励みになります。