Skip to content

Commit

Permalink
Updated selenium version to 4.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Dec 10, 2022
1 parent ea26a14 commit 5ac767f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ ScalaTest + Selenium provides integration support between ScalaTest and Selenium

**Usage**

To use it for ScalaTest 3.2.14 and Selenium 4.4.x:
To use it for ScalaTest 3.2.14 and Selenium 4.6.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "selenium-4-4" % "3.2.14.0" % "test"
libraryDependencies += "org.scalatestplus" %% "selenium-4-6" % "3.2.14.0" % "test"
```

Maven:

```
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>selenium-4-4_2.13</artifactId>
<artifactId>selenium-4-6_2.13</artifactId>
<version>3.2.14.0</version>
<scope>test</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.io.PrintWriter
import scala.io.Source

name := "selenium-4.5"
name := "selenium-4.6"

organization := "org.scalatestplus"

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

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-core" % "3.2.14",
"org.seleniumhq.selenium" % "selenium-java" % "4.5.3",
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.5.2",
"org.seleniumhq.selenium" % "selenium-java" % "4.6.0",
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.6.0",
"org.eclipse.jetty" % "jetty-webapp" % "9.4.48.v20220622" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.14" % Test,
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.14" % Test
Expand Down

0 comments on commit 5ac767f

Please sign in to comment.