I'm working on Selenium in C#. I had been using the webdriver manager to update the chrome and the firefox drivers.
new DriverManager().SetUpDriver("https://chromedriver.storage.googleapis.com/2.25/chromedriver_win32.zip",
Path.Combine(Directory.GetCurrentDirectory(), "chromedriver.exe"),
"chromedriver.exe"
);
but this is downloading the driver each time I run the program, I only want to download the driver even if it is not the latest version according to the browser's version.
How will I check the downloaded version or existing version of the web-driver
Thanks in advance