Skip to content

Commit 78cf4d5

Browse files
committed
Updated to use scalatest 3.2.14.
1 parent e5a21a7 commit 78cf4d5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ ScalaTest + Selenium provides integration support between ScalaTest and Selenium
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.13 and Selenium 4.2.x:
6+
To use it for ScalaTest 3.2.14 and Selenium 4.2.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "selenium-4-2" % "3.2.13.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "selenium-4-2" % "3.2.14.0" % "test"
1212
```
1313

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>selenium-4-2_2.13</artifactId>
20-
<version>3.2.13.0</version>
20+
<version>3.2.14.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name := "selenium-4.4"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.13.0"
8+
version := "3.2.14.0"
99

1010
homepage := Some(url("https://github.com/scalatest/scalatestplus-selenium"))
1111

@@ -30,12 +30,12 @@ scalaVersion := "2.13.8"
3030
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.16", "2.13.8", "3.1.3")
3131

3232
libraryDependencies ++= Seq(
33-
"org.scalatest" %% "scalatest-core" % "3.2.13",
33+
"org.scalatest" %% "scalatest-core" % "3.2.14",
3434
"org.seleniumhq.selenium" % "selenium-java" % "4.4.0",
3535
"org.seleniumhq.selenium" % "htmlunit-driver" % "3.64.0",
3636
"org.eclipse.jetty" % "jetty-webapp" % "9.4.48.v20220622" % Test,
37-
"org.scalatest" %% "scalatest-funspec" % "3.2.13" % Test,
38-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.13" % Test
37+
"org.scalatest" %% "scalatest-funspec" % "3.2.14" % Test,
38+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.14" % Test
3939
)
4040

4141
import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}

0 commit comments

Comments
 (0)