1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# This file lists the webdriver tests that run as a part of the functional test
# suite.
#
# Tests can be enabled on a per-platform basis. Tests not listed here will
# not be run.
#
# Test names can be specified in any of the following ways:
# 1. as a module, in which case all tests in that module will be run
# example: 'test_basic'
# 2. or as a test case, in which case all tess in that test case will be run
# example: 'test_basic.SimpleTest'
# 3. or as an individual test
# example: 'test_basic.SimpleTest.testCanOpenGoogle'
#
# Tests beginning with '-' will be excluded. This can be used to enforce
# exclusions for a particular platform.
# Most of these tests are disabled because they involve not yet implemented
# features. See bug 71237.
{
'all': [
'children_finding_tests',
# 'cookie_tests',
# 'correct_event_firing_tests',
'driver_element_finding_test',
'element_attribute_tests',
# 'executing_async_javascript_test',
'executing_javascript_test',
'form_handling_tests',
# The following require the click command.
'-form_handling_tests.FormHandlingTests.testClickingOnUnclickableElementsDoesNothing',
'-form_handling_tests.FormHandlingTests.testShouldBeAbleToClickImageButtons',
'-form_handling_tests.FormHandlingTests.testShouldBeAbleToSelectARadioButtonByClickingOnIt',
'-form_handling_tests.FormHandlingTests.testShouldClickOnSubmitInputElements',
# The following are all suppressed because the submit command currently does
# not wait for post-submit navigation events to complete.
'-form_handling_tests.FormHandlingTests.testShouldBeAbleToSubmitForms',
'-form_handling_tests.FormHandlingTests.testShouldSubmitAFormWhenAnyElementWihinThatFormIsSubmitted',
'-form_handling_tests.FormHandlingTests.testShouldSubmitAFormWhenAnyInputElementWithinThatFormIsSubmitted',
# Test fails from a bug in the WebDriver python bindings. This bug has been
# fixed in the WebDriver tree:
# http://code.google.com/p/selenium/source/detail?r=11480
'-form_handling_tests.FormHandlingTests.testShouldThrowAnExceptionWhenSelectingAnUnselectableElement',
'frame_switching_tests',
'implicit_waits_tests',
# Depends on click.
'-implicit_waits_tests.ImplicitWaitTest.testShouldImplicitlyWaitForASingleElement',
'-implicit_waits_tests.ImplicitWaitTest.testShouldImplicitlyWaitUntilAtLeastOneElementIsFoundWhenSearchingForMany',
'-implicit_waits_tests.ImplicitWaitTest.testShouldReturnAfterFirstAttemptToFindManyAfterDisablingImplicitWaits',
'page_loading_tests',
# testShouldReturnWhenGettingAUrlThatDoesNotResolve causes the test after
# to fail when run in xvfb: crbug.com/72027.
'-page_loading_tests.PageLoadingTests.testShouldReturnWhenGettingAUrlThatDoesNotResolve',
'-page_loading_tests.PageLoadingTests.testShouldBeAbleToNavigateBackInTheBrowserHistory',
'-page_loading_tests.PageLoadingTests.testShouldBeAbleToNavigateBackInTheBrowserHistoryInPresenceOfIframes',
'-page_loading_tests.PageLoadingTests.testShouldBeAbleToNavigateForwardsInTheBrowserHistory',
# This test is flaky.
'-page_loading_tests.PageLoadingTests.testShouldWaitForDocumentToBeLoaded',
'rendered_webelement_tests',
# Test is flaky. Sometimes can't find an element.
'-rendered_webelement_tests.RenderedWebElementTests.testShouldCorrectlyIdentifyThatAnElementHasWidth',
# Test expects a color keyword, but a rgba tuple is returned.
'-rendered_webelement_tests.RenderedWebElementTests.testShouldAllowInheritedStylesToBeUsed',
# Test expects hex color, but a rgb tuple is returned.
'-rendered_webelement_tests.RenderedWebElementTests.testShouldPickUpStyleOfAnElement',
'select_element_handling_tests',
'stale_reference_tests',
# Test requires click command.
'-stale_reference_tests.StaleReferenceTests.testOldPage',
# 'text_handling_tests',
'typing_tests',
'visibility_tests',
# Depends on click.
'-visibility_tests.VisibilityTests.testShouldModifyTheVisibilityOfAnElementDynamically',
'-visibility_tests.VisibilityTests.testShouldNotBeAbleToClickOnAnElementThatIsNotDisplayed',
# Bug in typing: element is not verified before typing.
'-visibility_tests.VisibilityTests.testShouldNotBeAbleToTypeAnElementThatIsNotDisplayed',
],
'win': [
],
'mac': [
],
'linux': [
],
}
|