Skip to content

Commit 4af7efe

Browse files
committed
Changes in version 1.8.3
------------------------ * reportng 1.6.2
1 parent 6f548cc commit 4af7efe

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Changes in version 1.8.3
2+
------------------------
3+
* reportng 1.6.2
4+
5+
16
Changes in version 1.8.2
27
------------------------
38
* reportng 1.6.1

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99

1010

1111
group = "it.testee"
12-
version = "1.8.2"
12+
version = "1.8.3"
1313

1414

1515
repositories {
@@ -27,7 +27,7 @@ dependencies {
2727
// testng
2828
implementation("org.testng", "testng", "7.7.1")
2929
// reportng
30-
implementation("com.github.hibissscus:reportng:1.6.1")
30+
implementation("com.github.hibissscus:reportng:1.6.2")
3131
}
3232

3333
tasks {

src/main/kotlin/testee/it/e2e/core/test/TestBase.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ abstract class TestBase(
172172

173173
fun takeScreenShot() {
174174
val screenshotFile = (driver as TakesScreenshot).getScreenshotAs(OutputType.FILE)
175-
val outputFolder = "${outputDirectory}/images/$className/$testName" + "_" + this.counter++ + ".png"
175+
val outputFolder = "${outputDirectory}/images/$className/$testName/" + "_" + this.counter++ + ".png"
176176
screenshotFile.copyTo(File(outputFolder))
177177
}
178178

0 commit comments

Comments
 (0)