Browse Source

Expect Chrome 50 in VerifyBrowserVersionTest

Change-Id: I65c0231b5f6a1ad14a8439824a95c36a9f6e8138
tags/7.7.0.alpha2
Henri Sara 8 years ago
parent
commit
2aa9b0806c

+ 5
- 6
uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java View File

@@ -1,12 +1,12 @@
/*
* Copyright 2000-2014 Vaadin Ltd.
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
@@ -39,9 +39,8 @@ public class VerifyBrowserVersionTest extends MultiBrowserTest {
if (BrowserUtil.isChrome(getDesiredCapabilities())) {
// Chrome version does not necessarily match the desired version
// because of auto updates...
// TODO - replace fixed number with a range?
browserIdentifier = getExpectedUserAgentString(
getDesiredCapabilities()) + "49";
browserIdentifier = getExpectedUserAgentString(getDesiredCapabilities())
+ "50";
} else {
browserIdentifier = getExpectedUserAgentString(desiredCapabilities)
+ desiredCapabilities.getVersion();

Loading…
Cancel
Save