Skip to content

Commit 1585c62

Browse files
authored
[plugin-applitools] Bump Applitools SDK dependencies (#5740)
1 parent c40be1f commit 1585c62

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,6 @@ ext {
7979
versions = [
8080
jbehave: '6.0.0-alpha.9',
8181
powermock: 'a0be5c4bbe',
82-
// eyes and eyesUniversal versions should be updated and tested together
83-
eyes: '5.69.5',
84-
eyesUniversal: '5.64.17',
8582
jsonPath: '52ebb195bd'
8683
]
8784
}

vividus-docker-bundler/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
implementation (project(':vividus-plugin-applitools')) {
3434
exclude group: 'com.applitools', module: 'eyes-universal-core-binaries'
3535
}
36-
implementation(group: 'com.applitools', name: 'eyes-universal-core-alpine', version: versions.eyesUniversal)
36+
implementation(group: 'com.applitools', name: 'eyes-universal-core-alpine', version: '5.71.0')
3737

3838
implementation project(':vividus-plugin-avro')
3939
implementation project(':vividus-plugin-aws-dynamodb')

vividus-plugin-applitools/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ dependencies {
99
implementation project(':vividus-soft-assert')
1010
implementation project(':vividus-util')
1111

12-
implementation(group: 'com.applitools', name: 'eyes-images-java5', version: versions.eyes)
13-
implementation(group: 'com.applitools', name: 'eyes-selenium-java5', version: versions.eyes)
12+
implementation(group: 'com.applitools', name: 'eyes-images-java5', version: '5.75.3')
13+
implementation(group: 'com.applitools', name: 'eyes-selenium-java5', version: '5.77.0')
1414
implementation platform(group: 'org.slf4j', name: 'slf4j-bom', version: '2.0.16')
1515
implementation(group: 'org.slf4j', name: 'slf4j-api')
1616

vividus-plugin-applitools/src/test/java/org/vividus/visual/eyes/UfgStepsTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2023 the original author or authors.
2+
* Copyright 2019-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -116,15 +116,15 @@ void shouldPerformVisualCheckAndAccessibilityCheck()
116116
new DesktopBrowserInfo(new RectangleSize(1920, 1080), BrowserType.CHROME).getRenderBrowserInfo(),
117117
AccessibilityStatus.Failed);
118118
ApplitoolsTestResults iosResults = createResults("iOS 16.1", "Safari", new RectangleSize(375, 821),
119-
new RenderBrowserInfo(new IosDeviceInfo(IosDeviceName.iPhone_X)), AccessibilityStatus.Passed);
119+
new RenderBrowserInfo(new IosDeviceInfo(IosDeviceName.iPhone_16_Pro_Max)), AccessibilityStatus.Passed);
120120
when(visualCheckResult.getTestResults()).thenReturn(List.of(desktopResults, iosResults));
121121

122122
steps.performCheck(List.of(applitoolsVisualCheck), new IRenderingBrowserInfo[] { renderInfo, renderInfo });
123123

124124
verify(softAssert).assertTrue(
125125
"WCAG 2.1 - AA accessibility check for test: baseline-name Chrome 1920x1080", false);
126126
verify(softAssert).assertTrue(
127-
"WCAG 2.1 - AA accessibility check for test: baseline-name iPhone X iOS 16.1 Safari", true);
127+
"WCAG 2.1 - AA accessibility check for test: baseline-name iPhone 16 Pro Max iOS 16.1 Safari", true);
128128
}
129129

130130
private ApplitoolsTestResults createResults(String os, String browser, RectangleSize viewport,

0 commit comments

Comments
 (0)