Skip to content

DriverSettings

DriverSettings Record

Sorry, too lazy to write proper, so here is the record.

C#
1
2
3
4
5
6
public record DriverSettings(
    string ProcessName = "msedge",
    string BrowserExecutable = @"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe",
    bool KillBrowser = false,
    bool CacheCookies = true
);