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
options = webdriver.ChromeOptions() options.add_argument('test-type') chromedriver = 'resources/chromedriver.exe' os.environ["webdriver.chrome.driver"] = chromedriver self.driver = webdriver.Chrome(chromedriver,chrome_options=options)