1. 程式人生 > >List of chrome's command line switch

List of chrome's command line switch

http://peter.sh/experiments/chromium-command-line-switches/

An example on how to use them

var option = new ChromeOptions();
            option.AddArgument("--ignore-certificate-errors");
            //option.AddArgument("--no-sandbox");
            return new ChromeDriver(option);