How to start specific version of chrome instance using webdriver-manager

Today (March 30th 2022) google released version 100. Many of us still might use Chrome 99 and below version.

If we run the below command, all versions of driver will upgrade

webdriver-manager update

Clean(delete) the drivers if needed

webdriver-manager clean

Install a specific version of chrome

webdriver-manager update — versions.chrome 98.0.4758.102

Starting a specific version of chrome

webdriver-manager start — versions.chrome 99.0.4844.51

Note : Use sudo if required in the above commands

--

--