From 3df1883508b58320c139e988929c6cba21dcd8d0 Mon Sep 17 00:00:00 2001 From: Olha Omelianchuk Date: Fri, 21 Oct 2022 15:58:00 +0200 Subject: [PATCH 1/6] Update Apache Commons Text dependency due to security issue #221 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6b03f08f7..7fda55264 100644 --- a/pom.xml +++ b/pom.xml @@ -278,7 +278,7 @@ org.apache.commons commons-text - 1.9 + 1.10.0 org.apache.commons From 1d9dce47a668879ab0d14963af8970b7805ff3a3 Mon Sep 17 00:00:00 2001 From: Olha Omelianchuk Date: Mon, 24 Oct 2022 13:31:21 +0200 Subject: [PATCH 2/6] update snakeyaml to 1.31 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7fda55264..bb45fbd43 100644 --- a/pom.xml +++ b/pom.xml @@ -223,7 +223,7 @@ org.yaml snakeyaml - 1.29 + 1.31 io.cucumber From 1d13d22841e8570a6535bd430cb6af91e0e7f2db Mon Sep 17 00:00:00 2001 From: Olha Omelianchuk Date: Mon, 24 Oct 2022 13:35:25 +0200 Subject: [PATCH 3/6] update Neodymium version for release #221 --- README.md | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a058d81ae..ded3f8785 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Maven Central](https://img.shields.io/maven-central/v/com.xceptance/neodymium-library.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.xceptance%22%20AND%20a:%22neodymium-library%22) [![Join the chat at https://gitter.im/neodymium-library/community](https://badges.gitter.im/neodymium-library/community.svg)](https://gitter.im/neodymium-library/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -# Neodymium v4.1.3 +# Neodymium v4.1.4 Neodymium tries to solve your typical and most pressing UI test automation problems by combining JUnit, WebDriver, BDD/Cucumber, and proper reporting. It gives you ready to use templates, assembles well-known open source projects, and enhances this all with additional functionality that is often missing. Neodymium is basically the combination of state of the art open source test libraries with additional glue to make it stick reliably together. diff --git a/pom.xml b/pom.xml index bb45fbd43..9d5bcfa2f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.xceptance neodymium-library - 4.1.3 + 4.1.4 neodymium-library https://github.com/Xceptance/neodymium-library From 581971b94cb6bdcb75824076995bde4a3fddd6c9 Mon Sep 17 00:00:00 2001 From: Olha Omelianchuk Date: Mon, 24 Oct 2022 13:36:38 +0200 Subject: [PATCH 4/6] update log4j dependency #221 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9d5bcfa2f..dfd12526b 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ 5.15.1 6.8.1 2.1.2 - 2.17.0 + 2.17.1 From 33f75b8d1baf1c8ce895f04fe5506734d22635c3 Mon Sep 17 00:00:00 2001 From: Olha Omelianchuk Date: Mon, 24 Oct 2022 13:41:19 +0200 Subject: [PATCH 5/6] update dependency information in README #221 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ded3f8785..9dabcbfd8 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ If you are still impatient, here is the quickest way to get Neodymium added to y com.xceptance neodymium-library - 4.1.3 + 4.1.4 ``` Add the `@RunWith` annotation to your test class or its superclass. This enables test execution with Neodymium. From 7924e12356700754f4f37f4740784b4ff972216b Mon Sep 17 00:00:00 2001 From: Olha Omelianchuk Date: Mon, 24 Oct 2022 14:55:35 +0200 Subject: [PATCH 6/6] fix SelenideAddonsTest #221 --- .../java/com/xceptance/neodymium/util/SelenideAddonsTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/com/xceptance/neodymium/util/SelenideAddonsTest.java b/src/test/java/com/xceptance/neodymium/util/SelenideAddonsTest.java index 922839498..249e36ce9 100644 --- a/src/test/java/com/xceptance/neodymium/util/SelenideAddonsTest.java +++ b/src/test/java/com/xceptance/neodymium/util/SelenideAddonsTest.java @@ -466,8 +466,8 @@ public void testDownwardDragAndDropUntilCondition() SelenideElement slider = $("#equalizer .k-slider-vertical:first-child span.k-draghandle"); slider.scrollIntoView("{'block':'center','inline':'center'}"); slider.shouldHave(attribute("aria-valuenow", "10")); - SelenideAddons.dragAndDropUntilCondition(slider, slider, 0, 10, 3000, 23, Condition.attribute("aria-valuenow", "-6")); - slider.shouldHave(attribute("aria-valuenow", "-6")); + SelenideAddons.dragAndDropUntilCondition(slider, slider, 0, 10, 3000, 23, Condition.attribute("aria-valuenow", "-8")); + slider.shouldHave(attribute("aria-valuenow", "-8")); } @Test()