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

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

Issue 6694007: Small test and ChromeDriver fixes to enable additional tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address Dennis' comments 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
« no previous file with comments | « no previous file | chrome/test/webdriver/commands/mouse_commands.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #
(...skipping 10 matching lines...) Expand all
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', 30 '-cookie_tests.CookieTest.testGetGoogleCookie',
31 # 'correct_event_firing_tests', 31 'correct_event_firing_tests',
32 'driver_element_finding_test', 32 'driver_element_finding_test',
33 'element_attribute_tests', 33 'element_attribute_tests',
34 # 'executing_async_javascript_test', 34 # Async execution has not been implemented.
35 # 'executing_async_javascript_test',
35 'executing_javascript_test', 36 'executing_javascript_test',
36 'form_handling_tests', 37 'form_handling_tests',
37 # This test is flaky, probably because of form submission race. 38 # This test is flaky, probably because of form submission race.
38 '-form_handling_tests.FormHandlingTests.testShouldClickOnSubmitInputElements ', 39 '-form_handling_tests.FormHandlingTests.testShouldClickOnSubmitInputElements ',
39 'frame_switching_tests', 40 'frame_switching_tests',
40 'implicit_waits_tests', 41 'implicit_waits_tests',
41 'page_loading_tests', 42 'page_loading_tests',
42 # testShouldReturnWhenGettingAUrlThatDoesNotResolve causes the test after 43 # This test causes the test after to fail occassionally. See
43 # to fail when run in xvfb: crbug.com/72027. 44 # crbug.com/72027. This is because we are not waiting for navigation
45 # error pages.
44 '-page_loading_tests.PageLoadingTests.testShouldReturnWhenGettingAUrlThatDoe sNotResolve', 46 '-page_loading_tests.PageLoadingTests.testShouldReturnWhenGettingAUrlThatDoe sNotResolve',
45 '-page_loading_tests.PageLoadingTests.testShouldBeAbleToNavigateBackInTheBro wserHistory',
46 '-page_loading_tests.PageLoadingTests.testShouldBeAbleToNavigateBackInTheBro wserHistoryInPresenceOfIframes',
47 '-page_loading_tests.PageLoadingTests.testShouldBeAbleToNavigateForwardsInTh eBrowserHistory',
48 # This test is flaky.
49 '-page_loading_tests.PageLoadingTests.testShouldWaitForDocumentToBeLoaded',
50 'rendered_webelement_tests', 47 'rendered_webelement_tests',
51 # Test is flaky. Sometimes can't find an element.
52 '-rendered_webelement_tests.RenderedWebElementTests.testShouldCorrectlyIdent ifyThatAnElementHasWidth',
53 # Test expects a color keyword, but a rgba tuple is returned. 48 # Test expects a color keyword, but a rgba tuple is returned.
54 '-rendered_webelement_tests.RenderedWebElementTests.testShouldAllowInherited StylesToBeUsed', 49 '-rendered_webelement_tests.RenderedWebElementTests.testShouldAllowInherited StylesToBeUsed',
55 # Test expects hex color, but a rgb tuple is returned. 50 # Test expects hex color, but a rgb tuple is returned.
56 '-rendered_webelement_tests.RenderedWebElementTests.testShouldPickUpStyleOfA nElement', 51 '-rendered_webelement_tests.RenderedWebElementTests.testShouldPickUpStyleOfA nElement',
57 'select_element_handling_tests', 52 'select_element_handling_tests',
58 'stale_reference_tests', 53 'stale_reference_tests',
59 # 'text_handling_tests', 54 'text_handling_tests',
55 # Getting the page source is broken.
56 '-text_handling_tests.TextHandlingTests.testReadALargeAmountOfData',
57 # Chrome bug/oddity. See crbug.com/76111.
58 '-text_handling_tests.TextHandlingTests.testShouldBeAbleToSetMoreThanOneLine OfTextInATextArea',
59 # See issue 1225 on the webdriver OSS tracker.
60 '-text_handling_tests.TextHandlingTests.testShouldReturnEmptyStringWhenTagIs SelfClosing',
60 'typing_tests', 61 'typing_tests',
61 'visibility_tests', 62 'visibility_tests',
62 # Bug in clicking: element is not verified before clicking.
63 '-visibility_tests.VisibilityTests.testShouldNotBeAbleToClickOnAnElementThat IsNotDisplayed',
64 # Bug in typing: element is not verified before typing.
65 '-visibility_tests.VisibilityTests.testShouldNotBeAbleToTypeAnElementThatIsN otDisplayed',
66 ], 63 ],
67 64
68 'win': [ 65 'win': [
69 66
70 ], 67 ],
71 68
72 'mac': [ 69 'mac': [
73 70
74 ], 71 ],
75 72
76 'linux': [ 73 'linux': [
77 ], 74 ],
78 } 75 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/webdriver/commands/mouse_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698