namespace SeleniumBrowser { using System.Collections.Generic; public class BrowserInfo { public string Name { get; set; } = "Chrome"; public List Parameters { get; set; } = new List() { "--start-maximized", "--new-window", "--incognito", "--disable-notifications" }; } }