After updating Chrome to version 76, I cannot figure out how to hide the \"Chrome is being controlled by automated software...\" notification overriding some controls on the
This will work in C#:
ChromeOptions chromeOptions = new ChromeOptions(); chromeOptions.AddArgument("--incognito"); chromeOptions.AddExcludedArgument("enable-automation"); chromeOptions.AddAdditionalCapability("useAutomationExtension", false);