Skip to content

Commit ebe547f

Browse files
committed
Bumped up scalatest version to 3.2.16, selenium-java version to 4.9.1 and htmlunit to 4.9.0.
1 parent aea3adf commit ebe547f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
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.15 and Selenium 4.7.x:
6+
To use it for ScalaTest 3.2.16 and Selenium 4.9.x:
77

88
SBT:
99

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

1414
Maven:
1515

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

build.sbt

Lines changed: 7 additions & 7 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.7"
4+
name := "selenium-4.9"
55

66
organization := "org.scalatestplus"
77

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

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

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

3232
libraryDependencies ++= Seq(
33-
"org.scalatest" %% "scalatest-core" % "3.2.15",
34-
"org.seleniumhq.selenium" % "selenium-java" % "4.7.2",
35-
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.7.2",
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",
3636
"org.eclipse.jetty" % "jetty-webapp" % "9.4.48.v20220622" % Test,
37-
"org.scalatest" %% "scalatest-funspec" % "3.2.15" % Test,
38-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.15" % Test
37+
"org.scalatest" %% "scalatest-funspec" % "3.2.16" % Test,
38+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.16" % Test
3939
)
4040

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

0 commit comments

Comments
 (0)