Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(408)

Side by Side Diff: chrome/test/functional/PYAUTO_TESTS

Issue 7634031: Let pyauto create an attached webdriver instance to manipulate web pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: forgot to re-add the previously added files Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 # 4 #
5 # This file lists the pyauto tests that run as a part of the functional test 5 # This file lists the pyauto tests that run as a part of the functional test
6 # suite. 6 # suite.
7 # 7 #
8 # Tests can be enabled on a per-platform basis. Tests not listed here will 8 # Tests can be enabled on a per-platform basis. Tests not listed here will
9 # not be run. 9 # not be run.
10 # 10 #
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'navigation', 56 'navigation',
57 'notifications', 57 'notifications',
58 'ntp', 58 'ntp',
59 'omnibox', 59 'omnibox',
60 'passwords', 60 'passwords',
61 'pdf', 61 'pdf',
62 'plugins', 62 'plugins',
63 'plugins_check', 63 'plugins_check',
64 'popups', 64 'popups',
65 'prefs', 65 'prefs',
66 'pyauto_webdriver',
66 'search_engines', 67 'search_engines',
67 'shortcuts', 68 'shortcuts',
68 'special_tabs', 69 'special_tabs',
69 'sync', 70 'sync',
70 'test_basic', 71 'test_basic',
71 'test_pyauto', 72 'test_pyauto',
72 'themes', 73 'themes',
73 74
74 # ================================================== 75 # ==================================================
75 # Disabled tests that need to be investigated/fixed. 76 # Disabled tests that need to be investigated/fixed.
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 # crbug.com/66072 188 # crbug.com/66072
188 '-notifications.NotificationsTest.testNotificationOrderAfterClosingOne', 189 '-notifications.NotificationsTest.testNotificationOrderAfterClosingOne',
189 '-ntp.NTPTest.testLaunchAppNewWindow', # crbug.com/79812 190 '-ntp.NTPTest.testLaunchAppNewWindow', # crbug.com/79812
190 # crbug.com/70437 191 # crbug.com/70437
191 '-omnibox.OmniboxTest.testHistoryResult', 192 '-omnibox.OmniboxTest.testHistoryResult',
192 # crbug.com/91617 193 # crbug.com/91617
193 '-omnibox.OmniboxTest.testContentHistory', 194 '-omnibox.OmniboxTest.testContentHistory',
194 '-omnibox.OmniboxTest.testOmniboxSearchHistory', 195 '-omnibox.OmniboxTest.testOmniboxSearchHistory',
195 # Keychain popups make autofill/password tests difficult: crbug.com/49378 196 # Keychain popups make autofill/password tests difficult: crbug.com/49378
196 '-passwords', 197 '-passwords',
198 # WebDriver requires python 2.6, which mac pyauto does not use yet.
199 # crbug.com/49379
200 '-pyauto_webdriver',
197 # crbug.com/79263 201 # crbug.com/79263
198 '-popups.PopupsTest.testPopupsLaunchUponBrowserBackButton', 202 '-popups.PopupsTest.testPopupsLaunchUponBrowserBackButton',
199 # crbug.com/69619 203 # crbug.com/69619
200 '-search_engines.SearchEnginesTest.testDiscoverSearchEngine', 204 '-search_engines.SearchEnginesTest.testDiscoverSearchEngine',
201 # Keychain popups make sync tests difficult on Mac. crbug.com/49378 205 # Keychain popups make sync tests difficult on Mac. crbug.com/49378
202 '-sync', 206 '-sync',
203 # crbug.com/87837 207 # crbug.com/87837
204 '-plugins.PluginsTest.testBlockPluginException', 208 '-plugins.PluginsTest.testBlockPluginException',
205 '-plugins.PluginsTest.testDisableEnableAllPlugins', 209 '-plugins.PluginsTest.testDisableEnableAllPlugins',
206 '-plugins.PluginsTest.testKillAndReloadAllPlugins', 210 '-plugins.PluginsTest.testKillAndReloadAllPlugins',
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 487
484 # HTML5 media functional tests. 488 # HTML5 media functional tests.
485 'AV_FUNC': { 489 'AV_FUNC': {
486 'linux': [ 490 'linux': [
487 'media.media_event_simple_action', 491 'media.media_event_simple_action',
488 'media.media_event_simple_test', 492 'media.media_event_simple_test',
489 'media.media_event_track', 493 'media.media_event_track',
490 ], 494 ],
491 }, 495 },
492 } 496 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698