How do I download a specific version of ChromeDriver?

How to download ChromeDriver download?

I have installed the latest version of ChromeDriver in my machine.

I am able to start the browser in my computer but I can not start the ChromeDriver. I have tried below command to start the browser and the ChromeDriver.

ChromeOptions options = new ChromeOptions();. Options.AddArguments("start-maximized"); options.AddArguments("--disable-extensions"); options.AddArguments("--disable-popup-blocker"); options.AddArguments("--enable-automation"); options.AddArguments("--disable-plugins"); options.AddArguments("--no-sandbox"); options.AddArguments("--disable-dev-shm-usage"); options.AddArguments("--disable-background-timer"); options.AddArguments("--no-first-run"); options.AddArguments("--incognito"); options.AddArguments("--window-size=1280, 800"); options.AddArguments("--window-position=0, 0"); options.AddArguments("--no-first-run"); driver = new ChromeDriver(@"C:UsersJayanDesktopchromedriver.exe", options); The command starts the browser but it does not start the ChromeDriver. It is showing below error message in my windows.

I have also tried using chromedriver.exe file as a command and also I have tried with different locations of chromedriver. But it doesn't help me.

Please let me know if you have any solution to this. I have downloaded the latest version of chromedriver. Please download the version of chrome browser which is compatible with the chromeDriver.

Here is the link for the latest version of chrome.

Related Answers

How to run Selenium Python in Chrome?

As the title said, I would like to know how to import Chrome...

How do I update ChromeDriver?

I have a python script which downloads some webpages and then...