How can I reset my environmental path to default in Visual Studio 2019? Because I'm getting the following error even when using Atatas DriverSetup.AutoSetUp():
Session not created: This version of ChromeDriver only supports Chrome version 88
Current browser version is 90.0.4430.72 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe (SessionNotCreated)
Even though I'm using this code:
DriverSetup.AutoSetUp(BrowserNames.Chrome);
ChromeDriver chromeDriver = new ChromeDriver();
So there must be something with my path right? I mean this code works and the drivers or automation runs completely fine in my other projects, so I must of tweaked something by accident in this project.