| OLD | NEW |
| 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 18 matching lines...) Expand all Loading... |
| 29 'ClickTest.testCanClickOnALinkThatContainsEmbeddedBlockElements', | 29 'ClickTest.testCanClickOnALinkThatContainsEmbeddedBlockElements', |
| 30 'CombinedInputActionsTest.testClickingOnFormElements', | 30 'CombinedInputActionsTest.testClickingOnFormElements', |
| 31 'CombinedInputActionsTest.testHoldingDownShiftKeyWhileClicking', | 31 'CombinedInputActionsTest.testHoldingDownShiftKeyWhileClicking', |
| 32 'CoordinatesTest.testShouldGetCoordinatesInViewPortOfAnElementInAFrame', | 32 'CoordinatesTest.testShouldGetCoordinatesInViewPortOfAnElementInAFrame', |
| 33 'CoordinatesTest.testShouldGetCoordinatesInViewPortOfAnElementInANestedFrame
', | 33 'CoordinatesTest.testShouldGetCoordinatesInViewPortOfAnElementInANestedFrame
', |
| 34 'CoordinatesTest.testShouldScrollPageAndGetCoordinatesOfAnElementThatIsOutOf
ViewPort', | 34 'CoordinatesTest.testShouldScrollPageAndGetCoordinatesOfAnElementThatIsOutOf
ViewPort', |
| 35 'CorrectEventFiringTest.testShouldEmitOnClickEventsWhenSelectingElements', | 35 'CorrectEventFiringTest.testShouldEmitOnClickEventsWhenSelectingElements', |
| 36 'CorrectEventFiringTest.testShouldFireEventsInTheRightOrder', | 36 'CorrectEventFiringTest.testShouldFireEventsInTheRightOrder', |
| 37 'CorrectEventFiringTest.testShouldFireFocusEventWhenClicking', | 37 'CorrectEventFiringTest.testShouldFireFocusEventWhenClicking', |
| 38 'DragAndDropTest.testDragTooFar', | 38 'DragAndDropTest.testDragTooFar', |
| 39 'ElementEqualityTest.testAnElementFoundInADifferentFrameViaJsShouldHaveSameI
d', | |
| 40 'ElementFindingTest.testAnElementFoundInADifferentFrameIsStale', | |
| 41 'ElementFindingTest.testAnElementFoundInADifferentFrameViaJsCanBeUsed', | |
| 42 'ExecutingAsyncJavascriptTest.includesAlertTextInUnhandledAlertException', | 39 'ExecutingAsyncJavascriptTest.includesAlertTextInUnhandledAlertException', |
| 43 'ExecutingAsyncJavascriptTest.throwsIfAlertHappensDuringScript', | 40 'ExecutingAsyncJavascriptTest.throwsIfAlertHappensDuringScript', |
| 44 'ExecutingAsyncJavascriptTest.throwsIfAlertHappensDuringScriptWhichTimesOut'
, | 41 'ExecutingAsyncJavascriptTest.throwsIfAlertHappensDuringScriptWhichTimesOut'
, |
| 45 'ExecutingAsyncJavascriptTest.throwsIfScriptTriggersAlert', | 42 'ExecutingAsyncJavascriptTest.throwsIfScriptTriggersAlert', |
| 46 'ExecutingAsyncJavascriptTest.throwsIfScriptTriggersAlertWhichTimesOut', | 43 'ExecutingAsyncJavascriptTest.throwsIfScriptTriggersAlertWhichTimesOut', |
| 47 'ExecutingJavascriptTest.testShouldThrowExceptionIfExecutingOnNoPage', | 44 'ExecutingJavascriptTest.testShouldThrowExceptionIfExecutingOnNoPage', |
| 48 'FormHandlingTest.handleFormWithJavascriptAction', | 45 'FormHandlingTest.handleFormWithJavascriptAction', |
| 49 'FormHandlingTest.testShouldNotBeAbleToSubmitAFormThatDoesNotExist', | 46 'FormHandlingTest.testShouldNotBeAbleToSubmitAFormThatDoesNotExist', |
| 50 'FrameSwitchingTest.testFrameSearchesShouldBeRelativeToTheCurrentlySelectedF
rame', | 47 'FrameSwitchingTest.testFrameSearchesShouldBeRelativeToTheCurrentlySelectedF
rame', |
| 51 'FrameSwitchingTest.testShouldNotBeAbleToDoAnythingTheFrameIsDeletedFromUnde
rUs', | 48 'FrameSwitchingTest.testShouldNotBeAbleToDoAnythingTheFrameIsDeletedFromUnde
rUs', |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 Args: | 167 Args: |
| 171 operating_system: The operating system, one of 'linux', 'mac', 'win', or | 168 operating_system: The operating system, one of 'linux', 'mac', 'win', or |
| 172 'android'. | 169 'android'. |
| 173 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. | 170 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. |
| 174 | 171 |
| 175 Returns: | 172 Returns: |
| 176 Filter string, in Google Test (C++) format. | 173 Filter string, in Google Test (C++) format. |
| 177 """ | 174 """ |
| 178 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + | 175 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + |
| 179 _REVISION_NEGATIVE_FILTER[chrome_version]) | 176 _REVISION_NEGATIVE_FILTER[chrome_version]) |
| OLD | NEW |