Skip to content

Commit

Permalink
Merge pull request #222 from Xceptance/#221-update-apache-commons-tex…
Browse files Browse the repository at this point in the history
…t-dependency

Update Apache Commons Text dependency due to security issue #221
  • Loading branch information
oomelianchuk authored Oct 24, 2022
2 parents 5b46a42 + 7924e12 commit dc18726
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -47,7 +47,7 @@ If you are still impatient, here is the quickest way to get Neodymium added to y
<dependency>
<groupId>com.xceptance</groupId>
<artifactId>neodymium-library</artifactId>
<version>4.1.3</version>
<version>4.1.4</version>
</dependency>
```
Add the `@RunWith` annotation to your test class or its superclass. This enables test execution with Neodymium.
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.xceptance</groupId>
<artifactId>neodymium-library</artifactId>
<version>4.1.3</version>
<version>4.1.4</version>

<name>neodymium-library</name>
<url>https://github.com/Xceptance/neodymium-library</url>
Expand Down Expand Up @@ -58,7 +58,7 @@
<selenide.version>5.15.1</selenide.version>
<cucumber.version>6.8.1</cucumber.version>
<browserup.version>2.1.2</browserup.version>
<log4j.version>2.17.0</log4j.version>
<log4j.version>2.17.1</log4j.version>
</properties>

<repositories>
Expand Down Expand Up @@ -223,7 +223,7 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.29</version>
<version>1.31</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
Expand Down Expand Up @@ -278,7 +278,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.9</version>
<version>1.10.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit dc18726

Please sign in to comment.