1AUTHOR = "Chrome OS Team" 2NAME = "power_Display.brightness" 3PURPOSE = "Measure display power usage at each brightness." 4CRITERIA = "This test is a benchmark." 5TIME = "SHORT" 6TEST_CATEGORY = "Benchmark" 7TEST_CLASS = "power" 8TEST_TYPE = "client" 9 10DOC = """ 11This test records power related statistics while displaying different static 12pages with each of Chrome OS's 16 brightness levels. 13""" 14 15BRIGHTNESS_PAGES = ['white', 'black', 'checker1'] 16 17args_dict = utils.args_to_dict(args) 18pdash_note = args_dict.get('pdash_note', '') 19job.run_test('power_Display', brightness='all', tag=NAME.split('.')[1], 20 pages=BRIGHTNESS_PAGES, secs_per_page=20, seconds_period=1, 21 pdash_note=pdash_note) 22