From 7b7fb40b8a28ed05eede3fa47ad0a400826a477f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 1 Dec 2022 23:22:43 +0000 Subject: [PATCH 1/3] Update selenium.version to v4.7.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 203c5b710..24bdd6c67 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ 7.9.0 - 4.6.0 + 4.7.0 8.2.0 7.6.1 5.9.1 From d9ae28cde9514368f510413214eb6bb8147838dd Mon Sep 17 00:00:00 2001 From: Ramesh Babu Date: Sat, 3 Dec 2022 14:17:43 +0530 Subject: [PATCH 2/3] Upgrade Appium client --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 24bdd6c67..c397c441a 100644 --- a/pom.xml +++ b/pom.xml @@ -34,7 +34,7 @@ 7.9.0 4.7.0 - 8.2.0 + 8.3.0 7.6.1 5.9.1 From 2a9947ef94e6631367036a7d0e138da5a6797ff9 Mon Sep 17 00:00:00 2001 From: Ramesh Babu Date: Sat, 3 Dec 2022 14:42:58 +0530 Subject: [PATCH 3/3] Fixed Error collections issue --- .../java/io/github/selcukes/core/validation/Validation.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/selcukes-core/src/main/java/io/github/selcukes/core/validation/Validation.java b/selcukes-core/src/main/java/io/github/selcukes/core/validation/Validation.java index cf641cecd..646010a4c 100644 --- a/selcukes-core/src/main/java/io/github/selcukes/core/validation/Validation.java +++ b/selcukes-core/src/main/java/io/github/selcukes/core/validation/Validation.java @@ -46,8 +46,9 @@ private static List getErrorMessages() { public void failAll() { if (!getErrorMessages().isEmpty()) { - fail("Test Failed with Below Errors \n" + String.join("\n", getErrorMessages())); + String errors = String.join("\n", getErrorMessages()); FAILED_MESSAGES.remove(); + fail("Test Failed with Below Errors \n" + errors); } } }