Currently when trying to run the automatic cookie getting workflow (on Windows), the browser fails to open and the command errors with
instagram-location-search\.venv\Lib\site-packages\webdriver_manager\drivers\chrome.py", line 64, in get_latest_release_version
determined_browser_version = ".".join(determined_browser_version.split(".")[:3])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'split'
I suspect it is related to chrome_type=ChromeType.CHROMIUM, as changing it to ChromeType.GOOGLE fixes it for me, but this could be a Windows specific solution.
Currently when trying to run the automatic cookie getting workflow (on Windows), the browser fails to open and the command errors with
This is the same issue as here: https://github.com/SergeyPirogov/webdriver_manager/issues/649
I suspect it is related to
chrome_type=ChromeType.CHROMIUM
, as changing it toChromeType.GOOGLE
fixes it for me, but this could be a Windows specific solution.