You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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: SergeyPirogov/webdriver_manager#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.The text was updated successfully, but these errors were encountered: