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).
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).