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
Isn't the problem that you're missing the chrome.exe at the end of the path?
chrome.exe
In other words, the path should include the executable, rather than just being the folder in which the executable is located.