Skip to content

Commit

Permalink
[Chromedriver] Disable tests on HEAD for issue 1683.
Browse files Browse the repository at this point in the history
BUG=chromedriver:1683

Review-Url: https://codereview.chromium.org/2700853004
Cr-Commit-Position: refs/heads/master@{#452166}
  • Loading branch information
gmanikpure authored and Commit bot committed Feb 22, 2017
1 parent 85df088 commit e3972b6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
2 changes: 2 additions & 0 deletions chrome/test/chromedriver/test/run_py_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=1673
'ChromeDownloadDirTest.testFileDownloadWithGet',
'ChromeDriverPageLoadTimeoutTest.*',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=1683
'ChromeDriverTest.testShadowDomClick',
]
_VERSION_SPECIFIC_FILTER['57'] = [
# https://code.google.com/p/chromedriver/issues/detail?id=992
Expand Down
26 changes: 17 additions & 9 deletions chrome/test/chromedriver/test/test_expectations
Original file line number Diff line number Diff line change
Expand Up @@ -147,15 +147,23 @@ _OS_NEGATIVE_FILTER['mac'] = [
]

_SPECIFIC_OS_REVISION_NEGATIVE_FILTER = {}
_SPECIFIC_OS_REVISION_NEGATIVE_FILTER['linux_53'] = [
# Flaky on Linux32 against v53:
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=1418
'ClickTest.testShouldOnlyFollowHrefOnce',
'JavascriptEnabledDriverTest.*',
'WindowSwitchingTest.testCanCloseWindowWhenMultipleWindowsAreOpen',
'WindowSwitchingTest.testCanCallGetWindowHandlesAfterClosingAWindow',
'WindowSwitchingTest.testCanCloseWindowAndSwitchBackToMainWindow',
'XPathElementFindingTest.testShouldFindElementsByXPath',
_SPECIFIC_OS_REVISION_NEGATIVE_FILTER['linux_HEAD'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=1683
'ClickScrollingTest.testShouldBeAbleToClickElementInAFrameThatIsOutOfView',
'ClickScrollingTest.testShouldBeAbleToClickElementThatIsOutOfViewInAFrameThatIsOutOfView',
'ClickTest.testClickingLabelShouldSetCheckbox',
'ElementFindingTest.testRemovingAnElementDynamicallyFromTheDomShouldCauseAStaleRefException',
'FrameSwitchingTest.testShouldBeAbleToSwitchToTheTopIfTheFrameIsDeletedFromUnderUs',
]
_SPECIFIC_OS_REVISION_NEGATIVE_FILTER['win_HEAD'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=1683
'RenderedWebElementTest.testMoveRelativeToBody',
'RenderedWebElementTest.testCanClickOnSuckerFishMenuItem',
'BasicKeyboardInterfaceTest.testBasicKeyboardInput',
]
_SPECIFIC_OS_REVISION_NEGATIVE_FILTER['mac_HEAD'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=1683
'AlertsTest.testShouldHandleAlertOnPageLoad',
]

_OS_NEGATIVE_FILTER['android:chrome'] = [
Expand Down

0 comments on commit e3972b6

Please sign in to comment.