I\'m trying to get Selenium tests running with Chrome. I\'m using C#.
var options = new OpenQA.Selenium.Chrome.ChromeOptions(); options.BinaryLocation = @\"C:\\U
you should have installed chrome in your machine
and your chromedriver.exe version should accordingly to chrome download form
https://chromedriver.chromium.org/downloads
and given new chromedriver.exe path to your script..
This works well for me