| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 # | |
| 5 # This file lists the webdriver tests that run as a part of the functional test | |
| 6 # suite. | |
| 7 # | |
| 8 # Tests can be enabled on a per-platform basis. Tests not listed here will | |
| 9 # not be run. | |
| 10 # | |
| 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 | |
| 13 # example: 'test_basic' | |
| 14 # 2. or as a test case, in which case all tess in that test case will be run | |
| 15 # example: 'test_basic.SimpleTest' | |
| 16 # 3. or as an individual test | |
| 17 # example: 'test_basic.SimpleTest.testCanOpenGoogle' | |
| 18 # | |
| 19 # Tests beginning with '-' will be excluded. This can be used to enforce | |
| 20 # exclusions for a particular platform. | |
| 21 | |
| 22 # Most of these tests are disabled because they involve not yet implemented | |
| 23 # features. See bug 71237. | |
| 24 { | |
| 25 'all': [ | |
| 26 'children_finding_tests', | |
| 27 # Cookie tests try to set the domain explicitly to 'localhost', which | |
| 28 # is not allowed. | |
| 29 # 'cookie_tests', | |
| 30 'correct_event_firing_tests', | |
| 31 'driver_element_finding_test', | |
| 32 'element_attribute_tests', | |
| 33 # Async execution has not been implemented. | |
| 34 # 'executing_async_javascript_test', | |
| 35 'executing_javascript_test', | |
| 36 'form_handling_tests', | |
| 37 # This test is flaky, probably because of form submission race. | |
| 38 '-form_handling_tests.FormHandlingTests.testShouldClickOnSubmitInputElements
', | |
| 39 'frame_switching_tests', | |
| 40 # Test is asserting the wrong thing. | |
| 41 '-frame_switching_tests.FrameSwitchingTest.testShouldReturnFrameTitleNotWind
owTitle', | |
| 42 'implicit_waits_tests', | |
| 43 'page_loading_tests', | |
| 44 # Flaky. crbug.com/77495. | |
| 45 '-page_loading_tests.PageLoadingTests.testShouldBeAbleToNavigateBackInTheBro
wserHistory', | |
| 46 # Flaky. crbug.com/77495. | |
| 47 '-page_loading_tests.PageLoadingTests.testShouldBeAbleToNavigateForwardsInTh
eBrowserHistory', | |
| 48 # This test causes the test after to fail occassionally. See | |
| 49 # crbug.com/72027. This is because we are not waiting for navigation | |
| 50 # error pages. | |
| 51 '-page_loading_tests.PageLoadingTests.testShouldReturnWhenGettingAUrlThatDoe
sNotResolve', | |
| 52 'rendered_webelement_tests', | |
| 53 # Test expects a color keyword, but a rgba tuple is returned. | |
| 54 '-rendered_webelement_tests.RenderedWebElementTests.testShouldAllowInherited
StylesToBeUsed', | |
| 55 # Test expects hex color, but a rgb tuple is returned. | |
| 56 '-rendered_webelement_tests.RenderedWebElementTests.testShouldPickUpStyleOfA
nElement', | |
| 57 'select_element_handling_tests', | |
| 58 'stale_reference_tests', | |
| 59 'text_handling_tests', | |
| 60 # Chrome bug/oddity. See crbug.com/76111. | |
| 61 '-text_handling_tests.TextHandlingTests.testShouldBeAbleToSetMoreThanOneLine
OfTextInATextArea', | |
| 62 # See issue 1225 on the webdriver OSS tracker. | |
| 63 '-text_handling_tests.TextHandlingTests.testShouldReturnEmptyStringWhenTagIs
SelfClosing', | |
| 64 'typing_tests', | |
| 65 'visibility_tests', | |
| 66 ], | |
| 67 | |
| 68 'win': [ | |
| 69 | |
| 70 ], | |
| 71 | |
| 72 'mac': [ | |
| 73 | |
| 74 ], | |
| 75 | |
| 76 'linux': [ | |
| 77 ], | |
| 78 } | |
| OLD | NEW |