Skip to content

Commit 5ac767f

Browse files
committed
Updated selenium version to 4.6.0.
1 parent ea26a14 commit 5ac767f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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.14 and Selenium 4.4.x:
6+
To use it for ScalaTest 3.2.14 and Selenium 4.6.x:
77

88
SBT:
99

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

1414
Maven:
1515

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

build.sbt

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

4-
name := "selenium-4.5"
4+
name := "selenium-4.6"
55

66
organization := "org.scalatestplus"
77

@@ -31,8 +31,8 @@ crossScalaVersions := List("2.10.7", "2.11.12", "2.12.17", "2.13.10", "3.1.3")
3131

3232
libraryDependencies ++= Seq(
3333
"org.scalatest" %% "scalatest-core" % "3.2.14",
34-
"org.seleniumhq.selenium" % "selenium-java" % "4.5.3",
35-
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.5.2",
34+
"org.seleniumhq.selenium" % "selenium-java" % "4.6.0",
35+
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.6.0",
3636
"org.eclipse.jetty" % "jetty-webapp" % "9.4.48.v20220622" % Test,
3737
"org.scalatest" %% "scalatest-funspec" % "3.2.14" % Test,
3838
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.14" % Test

0 commit comments

Comments
 (0)