Skip to content

Commit 18673aa

Browse files
committed
Updated to use ScalaTest 3.2.18 and Selenium 4.17.
1 parent b1da35c commit 18673aa

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

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

44
**Usage**
55

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

88
SBT:
99

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

1414
Maven:
1515

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

build.sbt

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

66
organization := "org.scalatestplus"
77

8-
version := "3.3.0.0-alpha.1"
8+
version := "3.2.18.0"
99

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

@@ -31,12 +31,12 @@ scalaVersion := "2.13.12"
3131
crossScalaVersions := List("2.11.12", "2.12.18", "2.13.12", "3.3.1")
3232

3333
libraryDependencies ++= Seq(
34-
"org.scalatest" %% "scalatest-core" % "3.3.0-alpha.1",
35-
"org.seleniumhq.selenium" % "selenium-java" % "4.16.1",
34+
"org.scalatest" %% "scalatest-core" % "3.2.18",
35+
"org.seleniumhq.selenium" % "selenium-java" % "4.17.0",
3636
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.13.0",
3737
"org.eclipse.jetty" % "jetty-webapp" % "9.4.48.v20220622" % Test,
38-
"org.scalatest" %% "scalatest-funspec" % "3.3.0-alpha.1" % Test,
39-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.3.0-alpha.1" % Test
38+
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % Test,
39+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.18" % Test
4040
)
4141

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

0 commit comments

Comments
 (0)