Using Python 2.7.5, python module selenium (2.41.0) and chromedriver (2.9).
When Chrome starts it displays a message in a yellow popup bar: \"You are using an unsupp
you can use the following flag --test-type
var options = new ChromeOptions(); options.AddArguments(new[] { "--start-maximized", "allow-running-insecure-content", "--test-type" }); return new ChromeDriver(options);