Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c56cce9

Browse files
committedSep 7, 2023
Bumped up versions for ScalaTest 3.2.17 and Selenium 4.12.
1 parent ebe547f commit c56cce9

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed
 

‎README.md

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

44
**Usage**
55

6-
To use it for ScalaTest 3.2.16 and Selenium 4.9.x:
6+
To use it for ScalaTest 3.2.17 and Selenium 4.12.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "selenium-4-9" % "3.2.16.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "selenium-4-12" % "3.2.17.0" % "test"
1212
```
1313

1414
Maven:
1515

1616
```
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
19-
<artifactId>selenium-4-9_2.13</artifactId>
20-
<version>3.2.16.0</version>
19+
<artifactId>selenium-4-12_2.13</artifactId>
20+
<version>3.2.17.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

‎build.sbt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import java.io.PrintWriter
22
import scala.io.Source
33

4-
name := "selenium-4.9"
4+
name := "selenium-4.12"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.16.0"
8+
version := "3.2.17.0"
99

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

@@ -26,16 +26,16 @@ developers := List(
2626
)
2727
)
2828

29-
scalaVersion := "2.13.10"
30-
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.17", "2.13.10", "3.1.3")
29+
scalaVersion := "2.13.11"
30+
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.17", "2.13.11", "3.1.3")
3131

3232
libraryDependencies ++= Seq(
33-
"org.scalatest" %% "scalatest-core" % "3.2.16",
34-
"org.seleniumhq.selenium" % "selenium-java" % "4.9.1",
35-
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.9.0",
33+
"org.scalatest" %% "scalatest-core" % "3.2.17",
34+
"org.seleniumhq.selenium" % "selenium-java" % "4.12.1",
35+
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.12.0",
3636
"org.eclipse.jetty" % "jetty-webapp" % "9.4.48.v20220622" % Test,
37-
"org.scalatest" %% "scalatest-funspec" % "3.2.16" % Test,
38-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.16" % Test
37+
"org.scalatest" %% "scalatest-funspec" % "3.2.17" % Test,
38+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.17" % Test
3939
)
4040

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

0 commit comments

Comments
 (0)
Please sign in to comment.