Commit 66c6fcca authored by Artur Khachatryan's avatar Artur Khachatryan Committed by Commit Bot

[ChromeDriver] Drop support of Chrome v66, add support of Chrome v69

Branching Chrome v69.
We are adding supporting of Chrome v69 and dropping supporting of Chrome v66

Change-Id: Id9b75ef78dd14da34f5165cbc6f64b3a188a5eb9
Reviewed-on: https://chromium-review.googlesource.com/1146993Reviewed-by: default avatarJohn Chen <johnchen@chromium.org>
Commit-Queue: Artur Khachatryan <khachatryan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#577198}
parent efd86b08
......@@ -9,7 +9,7 @@
namespace {
// This variable must be able to be found and parsed by the upload script.
const int kMinimumSupportedChromeVersion[] = {66, 0, 3359, 0};
const int kMinimumSupportedChromeVersion[] = {67, 0, 3396, 0};
} // namespace
......
......@@ -191,23 +191,23 @@ def main():
versions = {'HEAD': archive.GetLatestRevision()}
# Linux64 build numbers
if util.IsLinux():
versions['69'] = '576753'
versions['68'] = '561732'
versions['67'] = '550422'
versions['66'] = '540276'
# Mac build numbers
elif util.IsMac():
versions['69'] = '576753'
versions['68'] = '561733'
versions['67'] = '550418'
versions['66'] = '540271'
# Windows build numbers
elif util.IsWindows():
versions['69'] = '576753'
versions['68'] = '561732'
versions['67'] = '550416'
versions['66'] = '540272'
code = 0
for version, revision in versions.iteritems():
......
......@@ -85,16 +85,12 @@ _NEGATIVE_FILTER = [
_VERSION_SPECIFIC_FILTER = {}
_VERSION_SPECIFIC_FILTER['HEAD'] = []
_VERSION_SPECIFIC_FILTER['69'] = []
_VERSION_SPECIFIC_FILTER['68'] = []
_VERSION_SPECIFIC_FILTER['67'] = []
_VERSION_SPECIFIC_FILTER['66'] = [
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2304
'ChromeDriverSiteIsolation.testCanClickOOPIF',
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2350
'ChromeDriverTest.testSlowIFrame',
]
_OS_SPECIFIC_FILTER = {}
_OS_SPECIFIC_FILTER['win'] = [
......
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