diff --git a/README.md b/README.md
index a058d81ae..9dabcbfd8 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.
@@ -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.
diff --git a/pom.xml b/pom.xml
index 6b03f08f7..dfd12526b 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
@@ -58,7 +58,7 @@
5.15.1
6.8.1
2.1.2
- 2.17.0
+ 2.17.1
@@ -223,7 +223,7 @@
org.yaml
snakeyaml
- 1.29
+ 1.31
io.cucumber
@@ -278,7 +278,7 @@
org.apache.commons
commons-text
- 1.9
+ 1.10.0
org.apache.commons
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()