Commit e2302f34 authored by Tatiana Buldina's avatar Tatiana Buldina Committed by Commit Bot

[ChromeDriver] Disable Java tests failing in W3C mode

Bug: chromedriver:2835, chromedriver:2854, chromedriver:2855
Bug: chromedriver:2856, chromedriver:2858
Change-Id: Ifce142ecca58b4f2583c8456b42e8d2a063182d9
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1562499Reviewed-by: default avatarJohn Chen <johnchen@chromium.org>
Commit-Queue: Tatiana Buldina <buldina@chromium.org>
Cr-Commit-Position: refs/heads/master@{#649898}
parent dc46a48a
...@@ -23,6 +23,33 @@ _NEGATIVE_FILTER = [ ...@@ -23,6 +23,33 @@ _NEGATIVE_FILTER = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2661 # https://bugs.chromium.org/p/chromedriver/issues/detail?id=2661
'WindowTest.testSetsTheSizeOfTheCurrentWindowFromIframe', 'WindowTest.testSetsTheSizeOfTheCurrentWindowFromIframe',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2854
'ChromeOptionsFunctionalTest.canSetAcceptInsecureCerts',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2835
'CookieImplementationTest.deleteAllCookies',
'CookieImplementationTest.canHandleHttpOnlyCookie',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2858
'ElementFindingTest.testFindingMultipleElementsByInvalidClassNameShouldThrow',
'ElementFindingTest.testFindingMultipleElementsByCompoundClassNameShouldThrow',
'ElementFindingTest.testFindingMultipleElementsByEmptyIdShouldReturnEmptyList',
'FormHandlingTest.testShouldNotBeAbleToSubmitAFormThatDoesNotExist',
'PositionAndSizeTest.testShouldGetCoordinatesInViewPortOfAnElementInAFrame',
'PositionAndSizeTest.testShouldGetCoordinatesInViewPortOfAnElementInANestedFrame',
'BasicKeyboardInterfaceTest.testSelectionSelectBySymbol',
'BasicKeyboardInterfaceTest.testSelectionSelectByWord',
'BasicMouseInterfaceTest.testMovingMouseToRelativeElementOffset',
'BasicMouseInterfaceTest.testMovingMouseToRelativeZeroElementOffset',
'BasicMouseInterfaceTest.testCanMoveOverAndOutOfAnElement',
'BasicMouseInterfaceTest.testMoveMouseByOffsetOverAndOutOfAnElement',
'CombinedInputActionsTest.testClickAfterMoveToAnElementWithAnOffsetShouldUseLastMousePosition',
'CombinedInputActionsTest.testChordControlCutAndPaste',
'DragAndDropTest.testDragAndDropElementWithOffsetInScrolledDiv',
'DragAndDropTest.canDragAnElementNotVisibleInTheCurrentViewportDueToAParentOverflow',
'LocationContextTest.testShouldSetAndGetLatitude',
'LocationContextTest.testShouldSetAndGetLongitude',
] ]
_READY_TO_RUN_FILTER = [ _READY_TO_RUN_FILTER = [
...@@ -31,6 +58,12 @@ _READY_TO_RUN_FILTER = [ ...@@ -31,6 +58,12 @@ _READY_TO_RUN_FILTER = [
_OS_NEGATIVE_FILTER = {} _OS_NEGATIVE_FILTER = {}
_OS_NEGATIVE_FILTER['win'] = [ _OS_NEGATIVE_FILTER['win'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2855
'WindowTest.canFullscreenTheWindow',
'WindowTest.canFullscreenTheWindowFromIframe',
'WindowTest.testCanMaximizeTheWindowFromIframe',
'WindowTest.testCanMaximizeTheWindow',
'BasicMouseInterfaceTest.testMovingMouseByRelativeOffset',
] ]
_OS_NEGATIVE_FILTER['linux'] = [ _OS_NEGATIVE_FILTER['linux'] = [
] ]
...@@ -42,7 +75,14 @@ _OS_NEGATIVE_FILTER['mac'] = [ ...@@ -42,7 +75,14 @@ _OS_NEGATIVE_FILTER['mac'] = [
'WindowTest.canFullscreenTheWindowFromFrame', 'WindowTest.canFullscreenTheWindowFromFrame',
'WindowTest.canFullscreenTheWindowFromIframe', 'WindowTest.canFullscreenTheWindowFromIframe',
'WindowTest.testSetsTheSizeOfTheCurrentWindow', 'WindowTest.testSetsTheSizeOfTheCurrentWindow',
'WindowTest.testCanMaximizeTheWindowFromFrame',
'WindowTest.testCanMaximizeTheWindowFromIframe',
'WindowTest.testCanMaximizeTheWindow',
'BasicMouseInterfaceTest.testMovingMouseByRelativeOffset', 'BasicMouseInterfaceTest.testMovingMouseByRelativeOffset',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2856
'ClickScrollingTest.testShouldBeAbleToClickElementThatIsOutOfViewInANestedFrameThatIsOutOfView',
'ClickScrollingTest.testShouldBeAbleToClickElementThatIsOutOfViewInANestedFrame',
] ]
_OS_NEGATIVE_FILTER['android:chrome'] = [ _OS_NEGATIVE_FILTER['android:chrome'] = [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment