Skip to content

Commit 19321cb

Browse files
committed
test: downgrade to selenium 4.25.0
1 parent 7343428 commit 19321cb

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,15 @@ allprojects {
5757
}
5858
}
5959

60+
configurations.configureEach {
61+
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
62+
if (details.requested.group == 'org.seleniumhq.selenium') {
63+
details.useVersion('4.25.0')
64+
details.because('Temporary workaround because of https://issues.chromium.org/issues/42323769')
65+
}
66+
}
67+
}
68+
6069
subprojects {
6170
configurations.configureEach {
6271
resolutionStrategy {

0 commit comments

Comments
 (0)