Skip to content

Commit

Permalink
Fixed an issue with Screenshots for Screenplay tasks in parallel exec…
Browse files Browse the repository at this point in the history
…ution
  • Loading branch information
wakaleo committed Oct 13, 2023
1 parent 673934b commit 2fb409f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
}
}
dependencies {
classpath "net.serenity-bdd:serenity-gradle-plugin:4.0.12"
classpath "net.serenity-bdd:serenity-gradle-plugin:4.0.14"
}
}

Expand All @@ -26,7 +26,7 @@ sourceCompatibility = 16
targetCompatibility = 16

ext {
SERENITY_VERSION = '4.0.12'
SERENITY_VERSION = '4.0.14'
JUNIT_PLATFORM_VERSION = '1.10.0'
CUCUMBER_JUNIT_PLATFORM_VERSION = '7.14.0'
JUNIT_JUPITER_VERSION = '5.10.0'
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<serenity.version>4.0.13-SNAPSHOT</serenity.version>
<serenity.version>4.0.15-SNAPSHOT</serenity.version>
<encoding>UTF-8</encoding>
<serenity.test.root></serenity.test.root>
<tags></tags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
@Suite
@IncludeEngines("cucumber")
@SelectClasspathResource("/features")
@ConfigurationParameter(key = PLUGIN_PROPERTY_NAME, value = "io.cucumber.core.plugin.SerenityReporterParallel,pretty,timeline:target/test-results/timeline")
@ConfigurationParameter(key = PLUGIN_PROPERTY_NAME,
value = "io.cucumber.core.plugin.SerenityReporterParallel,pretty,timeline:target/test-results/timeline")
public class CucumberTestSuite {
}
4 changes: 2 additions & 2 deletions src/test/resources/serenity.conf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ serenity {
// Default page configuration
home.page = "http://todomvc.com/examples/angularjs/#/"

//environment = browserstack
environment = browserstack
environments {
local {
home.page = "http://localhost:8080/angularjs/#/"
Expand Down Expand Up @@ -134,7 +134,7 @@ environments {
resolution = "1920x1200"
seleniumVersion = "4.6.0"
video = true
idleTimeout = 300
idleTimeout = 600
}
}
}
Expand Down

0 comments on commit 2fb409f

Please sign in to comment.