Commit 7018710d authored by Artur Khachatryan's avatar Artur Khachatryan Committed by Commit Bot

[ChromeDriver] Enabling some tests for PlzNavigate

Due to a bug fix now we are enabling tests ChromeDriverPageLoadTimeoutTest.testHistoryNavigationWithPageLoadTimeout and ChromeDriverPageLoadTimeoutTest.testRefreshWithPageLoadTimeout.

Tests ChromeDriverTest.testDoesntHangOnFragmentNavigation and PageLoadingTest.testShouldBeAbleToGetAFragmentOnTheCurrentPage are now enabled for HEAD but they are disabled for v63 and v64

Bug: chromedriver:2025
Change-Id: I16079017885504c77c0128bc64fefa598cd42e0b
Reviewed-on: https://chromium-review.googlesource.com/812148Reviewed-by: default avatarJohn Chen <johnchen@chromium.org>
Commit-Queue: Artur Khachatryan <khachatryan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#522295}
parent 4511cbf5
......@@ -79,8 +79,6 @@ _NEGATIVE_FILTER = [
'MobileEmulationCapabilityTest.testClickElement',
'MobileEmulationCapabilityTest.testNetworkConnectionTypeIsAppliedToAllTabs',
'MobileEmulationCapabilityTest.testNetworkConnectionTypeIsAppliedToAllTabsImmediately',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2025
'ChromeDriverTest.testDoesntHangOnFragmentNavigation',
]
_VERSION_SPECIFIC_FILTER = {}
......@@ -91,6 +89,16 @@ _VERSION_SPECIFIC_FILTER['HEAD'] = [
'MobileEmulationCapabilityTest.testNetworkConnectionTypeIsAppliedToAllTabsImmediately',
]
_VERSION_SPECIFIC_FILTER['64'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2025
'ChromeDriverTest.testDoesntHangOnFragmentNavigation',
]
_VERSION_SPECIFIC_FILTER['63'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2025
'ChromeDriverTest.testDoesntHangOnFragmentNavigation',
]
_OS_SPECIFIC_FILTER = {}
_OS_SPECIFIC_FILTER['win'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=299
......@@ -111,9 +119,6 @@ _OS_SPECIFIC_FILTER['mac'] = [
'MobileEmulationCapabilityTest.testTapElement',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=1945
'ChromeDriverTest.testWindowFullScreen',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2025
'ChromeDriverPageLoadTimeoutTest.testHistoryNavigationWithPageLoadTimeout',
'ChromeDriverPageLoadTimeoutTest.testRefreshWithPageLoadTimeout',
]
_DESKTOP_NEGATIVE_FILTER = [
......
......@@ -109,15 +109,22 @@ _REVISION_NEGATIVE_FILTER['HEAD'] = [
'UnexpectedAlertBehaviorTest.canSpecifyUnhandledAlertBehaviourUsingCapabilities',
# https://bugs.chromium.org/p/chromium/issues/detail?id=764519
'FrameSwitchingTest.testShouldBeAbleToClickInAFrameThatRewritesTopWindowLocation',
]
_REVISION_NEGATIVE_FILTER['64'] = (
_REVISION_NEGATIVE_FILTER['HEAD'] + [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2025
'PageLoadingTest.testShouldBeAbleToGetAFragmentOnTheCurrentPage',
]
]
)
_REVISION_NEGATIVE_FILTER['63'] = (
_REVISION_NEGATIVE_FILTER['HEAD'] + [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2025
'MiscTest.testStimulatesStrangeOnloadInteractionInFirefox',
'PageLoadingTest.testShouldNotHangIfDocumentOpenCallIsNeverFollowedByDocumentCloseCall',
'PageLoadingTest.testShouldNotHangIfDocumentOpenCallIsNeverFollowedByDocumentCloseCall',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2025
'PageLoadingTest.testShouldBeAbleToGetAFragmentOnTheCurrentPage',
]
)
......
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