Replies: 1 comment 1 reply
-
You will need to upgrade to Serenity 4.0.0 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
I have used the below build .gradle file and the test cases were working fine in chrome 104 but not working in 116 chrome browser version update. Kindly help on what needs to be modified.
build.gradle file:
defaultTasks 'clean','test','aggregate'
apply plugin: 'java'
apply plugin: 'net.serenity-bdd.aggregator'
group 'org.testing.syed'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
buildscript {
project.ext {
serenityVersion='2.3.12'
}
repositories {
mavenCentral()
}
dependencies {
classpath('net.serenity-bdd:serenity-gradle-plugin:'+ serenityVersion)
}
}
sourceCompatibility=1.8
targetCompatibility=1.8
ext{
slf4jVersion = '1.7.7'
serenityCoreVersion = '2.3.12'
junitVersion = '4.13'
assertJVersion = '3.8.0'
logbackVersion = '1.2.3'
}
dependencies {
}
test{
testLogging.showStandardStreams=true
systemProperties System.getProperties()
}
gradle.startParameter.continueOnFailure=true
test.finalizedBy(aggregate)
Beta Was this translation helpful? Give feedback.
All reactions