Commit 13e94577 authored by Artur Khachatryan's avatar Artur Khachatryan Committed by Commit Bot

[ChromeDriver] Add support for Chrome v70, drop support for Chrome v67

Chrome v70 is branched.
Adding support for Chrome v70 and dropping support for Chrome v67.

Change-Id: Ic26fc2e011f38cfc0ae34f9f19770a5d15b22f05
Reviewed-on: https://chromium-review.googlesource.com/1199776Reviewed-by: default avatarJohn Chen <johnchen@chromium.org>
Commit-Queue: Artur Khachatryan <khachatryan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#588191}
parent 2008c6b2
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
namespace { namespace {
// This variable must be able to be found and parsed by the upload script. // This variable must be able to be found and parsed by the upload script.
const int kMinimumSupportedChromeVersion[] = {67, 0, 3396, 0}; const int kMinimumSupportedChromeVersion[] = {68, 0, 3440, 0};
} // namespace } // namespace
......
...@@ -217,21 +217,21 @@ def main(): ...@@ -217,21 +217,21 @@ def main():
versions = {'HEAD': archive.GetLatestRevision()} versions = {'HEAD': archive.GetLatestRevision()}
# Linux64 build numbers # Linux64 build numbers
if util.IsLinux(): if util.IsLinux():
versions['70'] = '587811'
versions['69'] = '576753' versions['69'] = '576753'
versions['68'] = '561732' versions['68'] = '561732'
versions['67'] = '550422'
# Mac build numbers # Mac build numbers
elif util.IsMac(): elif util.IsMac():
versions['70'] = '587811'
versions['69'] = '576753' versions['69'] = '576753'
versions['68'] = '561733' versions['68'] = '561733'
versions['67'] = '550418'
# Windows build numbers # Windows build numbers
elif util.IsWindows(): elif util.IsWindows():
versions['70'] = '587814'
versions['69'] = '576753' versions['69'] = '576753'
versions['68'] = '561732' versions['68'] = '561732'
versions['67'] = '550416'
code = 0 code = 0
for version, revision in versions.iteritems(): for version, revision in versions.iteritems():
......
...@@ -96,6 +96,11 @@ _VERSION_SPECIFIC_FILTER['HEAD'] = [ ...@@ -96,6 +96,11 @@ _VERSION_SPECIFIC_FILTER['HEAD'] = [
'ChromeDriverPageLoadTimeoutTest.testRefreshWithPageLoadTimeout', 'ChromeDriverPageLoadTimeoutTest.testRefreshWithPageLoadTimeout',
] ]
_VERSION_SPECIFIC_FILTER['70'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2532
'ChromeDriverPageLoadTimeoutTest.testRefreshWithPageLoadTimeout',
]
_VERSION_SPECIFIC_FILTER['69'] = [ _VERSION_SPECIFIC_FILTER['69'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2515 # https://bugs.chromium.org/p/chromedriver/issues/detail?id=2515
'HeadlessInvalidCertificateTest.*', 'HeadlessInvalidCertificateTest.*',
...@@ -103,7 +108,6 @@ _VERSION_SPECIFIC_FILTER['69'] = [ ...@@ -103,7 +108,6 @@ _VERSION_SPECIFIC_FILTER['69'] = [
_VERSION_SPECIFIC_FILTER['68'] = [] _VERSION_SPECIFIC_FILTER['68'] = []
_VERSION_SPECIFIC_FILTER['67'] = []
_OS_SPECIFIC_FILTER = {} _OS_SPECIFIC_FILTER = {}
......
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