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
webdriver-manager does not download chromedriver if it contains number '64' in the version (like 96.0.4664.45).
The reason is in this line: chrome_xml.ts This code just mistakenly filter out valid version of chromedriver.
If osarch in not 64-based (I have as ia32), then !contentKey.includes('64') condition goes in and does not pass valid chromedriver 96.0.4664.45/chromedriver_win32.zip version since there is 64 inside (96.0.4664.45).
The text was updated successfully, but these errors were encountered:
webdriver-manager does not download chromedriver if it contains number '64' in the version (like 96.0.4664.45).
The reason is in this line: chrome_xml.ts This code just mistakenly filter out valid version of chromedriver.
If
osarch
in not 64-based (I have asia32
), then!contentKey.includes('64')
condition goes in and does not pass valid chromedriver96.0.4664.45/chromedriver_win32.zip
version since there is 64 inside (96.0.4664.45).The text was updated successfully, but these errors were encountered: