diff options
author | Anna Koskinen <Ansku@users.noreply.github.com> | 2020-10-12 13:25:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-12 13:25:32 +0300 |
commit | 2c8aa65c72d424c60da57ddb39e09a8cc3b6269a (patch) | |
tree | e3ba5a1c7b4e4cd26779ec48d362d006ea767018 | |
parent | 9d370a760390c0b19988c05f783bee94a0c92d6c (diff) | |
download | vaadin-framework-2c8aa65c72d424c60da57ddb39e09a8cc3b6269a.tar.gz vaadin-framework-2c8aa65c72d424c60da57ddb39e09a8cc3b6269a.zip |
Chrome update to version 86 (#12117)
-rw-r--r-- | uitest/reference-screenshots/chrome/FontIconsTest-checkScreenshot_ANY_Chrome__allVaadinIcons.png | bin | 141260 -> 141276 bytes | |||
-rwxr-xr-x | uitest/reference-screenshots/chrome/ResponsiveStylesTest-testValoMenuResponsiveHover_ANY_Chrome__collapsedMenu.png | bin | 11904 -> 11779 bytes | |||
-rw-r--r-- | uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java | 2 | ||||
-rw-r--r-- | uitest/src/test/java/com/vaadin/tests/themes/valo/ValoThemeUITest.java | 2 |
4 files changed, 3 insertions, 1 deletions
diff --git a/uitest/reference-screenshots/chrome/FontIconsTest-checkScreenshot_ANY_Chrome__allVaadinIcons.png b/uitest/reference-screenshots/chrome/FontIconsTest-checkScreenshot_ANY_Chrome__allVaadinIcons.png Binary files differindex 0d68db4887..b95ce78e80 100644 --- a/uitest/reference-screenshots/chrome/FontIconsTest-checkScreenshot_ANY_Chrome__allVaadinIcons.png +++ b/uitest/reference-screenshots/chrome/FontIconsTest-checkScreenshot_ANY_Chrome__allVaadinIcons.png diff --git a/uitest/reference-screenshots/chrome/ResponsiveStylesTest-testValoMenuResponsiveHover_ANY_Chrome__collapsedMenu.png b/uitest/reference-screenshots/chrome/ResponsiveStylesTest-testValoMenuResponsiveHover_ANY_Chrome__collapsedMenu.png Binary files differindex c2638a4269..9070133c4c 100755 --- a/uitest/reference-screenshots/chrome/ResponsiveStylesTest-testValoMenuResponsiveHover_ANY_Chrome__collapsedMenu.png +++ b/uitest/reference-screenshots/chrome/ResponsiveStylesTest-testValoMenuResponsiveHover_ANY_Chrome__collapsedMenu.png diff --git a/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java b/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java index f1a91a2590..5357a5bc52 100644 --- a/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java +++ b/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java @@ -25,7 +25,7 @@ public class VerifyBrowserVersionTest extends MultiBrowserTest { // Chrome version does not necessarily match the desired version // because of auto updates... browserIdentifier = getExpectedUserAgentString( - getDesiredCapabilities()) + "85"; + getDesiredCapabilities()) + "86"; } else if (BrowserUtil.isFirefox(getDesiredCapabilities())) { browserIdentifier = getExpectedUserAgentString( getDesiredCapabilities()) + "75"; diff --git a/uitest/src/test/java/com/vaadin/tests/themes/valo/ValoThemeUITest.java b/uitest/src/test/java/com/vaadin/tests/themes/valo/ValoThemeUITest.java index c0350bbc15..489b7aba40 100644 --- a/uitest/src/test/java/com/vaadin/tests/themes/valo/ValoThemeUITest.java +++ b/uitest/src/test/java/com/vaadin/tests/themes/valo/ValoThemeUITest.java @@ -265,6 +265,7 @@ public class ValoThemeUITest extends MultiBrowserTest { } $(ButtonElement.class).caption(link).first().click(); + waitUntilLoadingIndicatorNotVisible(); CssLayoutElement content = wrap(CssLayoutElement.class, findElement(By.className("valo-content"))); LabelElement captionElem = content.$(LabelElement.class).first(); @@ -285,6 +286,7 @@ public class ValoThemeUITest extends MultiBrowserTest { testBenchElement(testMenu).scroll(top); testBenchElement(testMenu).scrollLeft(left); + waitUntilLoadingIndicatorNotVisible(); } @Override |