I am trying to set the download directory of the Chromium Edge browser for selenium during automation.
For Chrome I could achieve this using ChromeOptions like this: options.setExperimentalOption("download.default_directory", downloadFilepath);
I need to do the same for the Chromium Edge browser. How to download the files inside a customized folder, rather than the default Downloads folder in our system

