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

Side by Side Diff: chrome/test/chromedriver/test_expectations

Issue 14023006: [chromedriver] Fix bugs in SendKeys. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and "" -> std::string() Created 7 years, 8 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 | « chrome/test/chromedriver/key_converter.cc ('k') | no next file » | 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 """Test expectation list for WebDriver Java acceptance tests. 5 """Test expectation list for WebDriver Java acceptance tests.
6 6
7 It is evaluated through Python. 7 It is evaluated through Python.
8 """ 8 """
9 9
10 _REVISION_NEGATIVE_FILTER = {} 10 _REVISION_NEGATIVE_FILTER = {}
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'RenderedWebElementTest.testShouldPickUpStyleOfAnElement', 73 'RenderedWebElementTest.testShouldPickUpStyleOfAnElement',
74 'SessionHandlingTest.callingAnyOperationAfterClosingTheLastWindowShouldThrow AnException', 74 'SessionHandlingTest.callingAnyOperationAfterClosingTheLastWindowShouldThrow AnException',
75 'SessionHandlingTest.callingQuitAfterClosingTheLastWindowIsANoOp', 75 'SessionHandlingTest.callingQuitAfterClosingTheLastWindowIsANoOp',
76 # Broken because AddWebStorage.java is broken. 76 # Broken because AddWebStorage.java is broken.
77 'SessionStorageTest.*', 77 'SessionStorageTest.*',
78 'SqlDatabaseTest.*', 78 'SqlDatabaseTest.*',
79 'TextHandlingTest.testShouldNotReturnLtrMarks', 79 'TextHandlingTest.testShouldNotReturnLtrMarks',
80 'TextHandlingTest.testShouldReturnEmptyStringWhenTagIsSelfClosing', 80 'TextHandlingTest.testShouldReturnEmptyStringWhenTagIsSelfClosing',
81 'TextPagesTest.testShouldBeAbleToLoadASimplePageOfText', 81 'TextPagesTest.testShouldBeAbleToLoadASimplePageOfText',
82 'TextPagesTest.testShouldThrowExceptionWhenAddingCookieToAPageThatIsNotHtml' , 82 'TextPagesTest.testShouldThrowExceptionWhenAddingCookieToAPageThatIsNotHtml' ,
83 'TypingTest.testChordControlCutAndPaste',
84 'TypingTest.testChordControlHomeShiftEndDelete',
85 'TypingTest.testChordReveseShiftHomeSelectionDeletes',
86 'TypingTest.testDeleteAndBackspaceKeys',
87 'TypingTest.testNonPrintableCharactersShouldWorkWithContentEditableOrDesignM odeSet', 83 'TypingTest.testNonPrintableCharactersShouldWorkWithContentEditableOrDesignM odeSet',
88 'TypingTest.testShiftSelectionDeletes',
89 'TypingTest.testShouldBeAbleToTypeIntoContentEditableElementWithExistingValu e', 84 'TypingTest.testShouldBeAbleToTypeIntoContentEditableElementWithExistingValu e',
90 'TypingTest.testShouldNotTypeIntoElementsThatPreventKeyDownEvents', 85 'TypingTest.testShouldNotTypeIntoElementsThatPreventKeyDownEvents',
91 'TypingTest.testTypingIntoAnIFrameWithContentEditableOrDesignModeSet', 86 'TypingTest.testTypingIntoAnIFrameWithContentEditableOrDesignModeSet',
92 'UnexpectedAlertBehaviorTest.*', 87 'UnexpectedAlertBehaviorTest.*',
93 'VisibilityTest.tooSmallAWindowWithOverflowHiddenIsNotAProblem', 88 'VisibilityTest.tooSmallAWindowWithOverflowHiddenIsNotAProblem',
94 'WebElementTest.testElementReturnsOriginDriver', 89 'WebElementTest.testElementReturnsOriginDriver',
95 'WindowTest.*', 90 'WindowTest.*',
96 ] 91 ]
97 _REVISION_NEGATIVE_FILTER['27'] = [] + _REVISION_NEGATIVE_FILTER['HEAD'] 92 _REVISION_NEGATIVE_FILTER['27'] = [] + _REVISION_NEGATIVE_FILTER['HEAD']
98 _REVISION_NEGATIVE_FILTER['26'] = [ 93 _REVISION_NEGATIVE_FILTER['26'] = [
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 Args: 165 Args:
171 operating_system: The operating system, one of 'linux', 'mac', 'win', or 166 operating_system: The operating system, one of 'linux', 'mac', 'win', or
172 'android'. 167 'android'.
173 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. 168 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'.
174 169
175 Returns: 170 Returns:
176 Filter string, in Google Test (C++) format. 171 Filter string, in Google Test (C++) format.
177 """ 172 """
178 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + 173 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] +
179 _REVISION_NEGATIVE_FILTER[chrome_version]) 174 _REVISION_NEGATIVE_FILTER[chrome_version])
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/key_converter.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698