Commit 1ba57576 authored by khachatryan's avatar khachatryan Committed by Commit Bot

[ChromeDriver] Enable java tests in 'WindowTest' class

Tests disabled by ChromeDriver bugs 2855, 2661 and 2663
are now passing with the latest Chrome/ChromeDriver versions.
Enabling those tests on WaterFall.

Bug: chromedriver:2661, chromedriver:2663, chromedriver:2855
Change-Id: I493ed5b95f4c2608192e5ec94a44d45d77e8bb65
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1612324Reviewed-by: default avatarJohn Chen <johnchen@chromium.org>
Commit-Queue: Artur Khachatryan <khachatryan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#659686}
parent 161bdd1f
...@@ -18,9 +18,6 @@ _NEGATIVE_FILTER = [ ...@@ -18,9 +18,6 @@ _NEGATIVE_FILTER = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2653 # https://bugs.chromium.org/p/chromedriver/issues/detail?id=2653
'ReferrerTest.navigationWhenProxyInterceptsASpecificUrl', 'ReferrerTest.navigationWhenProxyInterceptsASpecificUrl',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2661
'WindowTest.testSetsTheSizeOfTheCurrentWindowFromIframe',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2854 # https://bugs.chromium.org/p/chromedriver/issues/detail?id=2854
'ChromeOptionsFunctionalTest.canSetAcceptInsecureCerts', 'ChromeOptionsFunctionalTest.canSetAcceptInsecureCerts',
...@@ -51,27 +48,14 @@ _READY_TO_RUN_FILTER = [ ...@@ -51,27 +48,14 @@ _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'] = [
] ]
_OS_NEGATIVE_FILTER['mac'] = [ _OS_NEGATIVE_FILTER['mac'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2663 # https://bugs.chromium.org/p/chromedriver/issues/detail?id=2663
'WindowTest.canFullscreenTheWindow', # Test 'WindowTest.testSetsTheSizeOfTheCurrentWindowFromIframe' passes while it is run
# standalone and fails in a test suit run
'WindowTest.testSetsTheSizeOfTheCurrentWindowFromIframe', 'WindowTest.testSetsTheSizeOfTheCurrentWindowFromIframe',
'WindowTest.testSetsTheSizeOfTheCurrentWindowFromFrame',
'WindowTest.canFullscreenTheWindowFromFrame',
'WindowTest.canFullscreenTheWindowFromIframe',
'WindowTest.testSetsTheSizeOfTheCurrentWindow',
'WindowTest.testCanMaximizeTheWindowFromFrame',
'WindowTest.testCanMaximizeTheWindowFromIframe',
'WindowTest.testCanMaximizeTheWindow',
'BasicMouseInterfaceTest.testMovingMouseByRelativeOffset',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2856 # https://bugs.chromium.org/p/chromedriver/issues/detail?id=2856
'ClickScrollingTest.testShouldBeAbleToClickElementThatIsOutOfViewInANestedFrameThatIsOutOfView', 'ClickScrollingTest.testShouldBeAbleToClickElementThatIsOutOfViewInANestedFrameThatIsOutOfView',
......
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