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

Side by Side Diff: chrome/test/webdriver/WEBDRIVER_TESTS

Issue 6723004: ChromeDriver should be able to focus on a frame using its frame element, (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 9 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 webdriver tests that run as a part of the functional test 5 # This file lists the webdriver 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 #
11 # Test names can be specified in any of the following ways: 11 # Test names can be specified in any of the following ways:
12 # 1. as a module, in which case all tests in that module will be run 12 # 1. as a module, in which case all tests in that module will be run
13 # example: 'test_basic' 13 # example: 'test_basic'
14 # 2. or as a test case, in which case all tess in that test case will be run 14 # 2. or as a test case, in which case all tess in that test case will be run
15 # example: 'test_basic.SimpleTest' 15 # example: 'test_basic.SimpleTest'
16 # 3. or as an individual test 16 # 3. or as an individual test
17 # example: 'test_basic.SimpleTest.testCanOpenGoogle' 17 # example: 'test_basic.SimpleTest.testCanOpenGoogle'
18 # 18 #
19 # Tests beginning with '-' will be excluded. This can be used to enforce 19 # Tests beginning with '-' will be excluded. This can be used to enforce
20 # exclusions for a particular platform. 20 # exclusions for a particular platform.
21 21
22 # Most of these tests are disabled because they involve not yet implemented 22 # Most of these tests are disabled because they involve not yet implemented
23 # features. See bug 71237. 23 # features. See bug 71237.
24 { 24 {
25 'all': [ 25 'all': [
26 'children_finding_tests', 26 'children_finding_tests',
27 'cookie_tests', 27 'cookie_tests',
28 # Automation proxy only returns cookie name=value pairs. 28 # Automation proxy only returns cookie name=value pairs.
29 '-cookie_tests.CookieTest.testAddCookie', 29 '-cookie_tests.CookieTest.testAddCookie',
30 '-cookie_tests.CookieTest.testGetGoogleCookie',
31 # 'correct_event_firing_tests', 30 # 'correct_event_firing_tests',
32 'driver_element_finding_test', 31 'driver_element_finding_test',
33 'element_attribute_tests', 32 'element_attribute_tests',
34 # 'executing_async_javascript_test', 33 # 'executing_async_javascript_test',
35 'executing_javascript_test', 34 'executing_javascript_test',
36 'form_handling_tests', 35 'form_handling_tests',
37 # This test is flaky, probably because of form submission race. 36 # This test is flaky, probably because of form submission race.
38 '-form_handling_tests.FormHandlingTests.testShouldClickOnSubmitInputElements ', 37 '-form_handling_tests.FormHandlingTests.testShouldClickOnSubmitInputElements ',
39 'frame_switching_tests', 38 'frame_switching_tests',
40 'implicit_waits_tests', 39 'implicit_waits_tests',
(...skipping 28 matching lines...) Expand all
69 68
70 ], 69 ],
71 70
72 'mac': [ 71 'mac': [
73 72
74 ], 73 ],
75 74
76 'linux': [ 75 'linux': [
77 ], 76 ],
78 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698