So i'm using this code but if the web is HTTP it opens on IE instead of Edge.
var ieOptions = new InternetExplorerOptions();
ieOptions.EdgeExecutablePath = "C:/Program Files (x86)/Microsoft/Edge/Application/msedge.exe";
IWebDriver driver = new InternetExplorerDriver(ieOptions);
driver.Url = "some http web";
is there a way to force it on edge?