1 min readOct 30, 2018
I have the following code which runs in Windows:
var chromeOptions = new ChromeOptions();
chromeOptions.AddArgument(“ — start-maximized”);
chromeOptions.AddArgument(“no-sandbox”);
var browser = new ChromeDriver(chromeOptions);
browser.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(5);
Can it be ported to Mac using your approach?
I couldn’t find a way to do so. Thanks.