You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
326 B

  1. namespace SeleniumBrowser
  2. {
  3. using System.Collections.Generic;
  4. public class BrowserInfo
  5. {
  6. public string Name { get; set; } = "Chrome";
  7. public List<string> Parameters { get; set; } = new List<string>() { "--start-maximized", "--new-window", "--incognito", "--disable-notifications" };
  8. }
  9. }