diff --git a/README.md b/README.md index 78098aa..3f380d7 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,12 @@ 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: @@ -16,7 +16,7 @@ Maven: ``` org.scalatestplus - selenium-4-4_2.13 + selenium-4-6_2.13 3.2.14.0 test diff --git a/build.sbt b/build.sbt index d6d81b2..51e802b 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ import java.io.PrintWriter import scala.io.Source -name := "selenium-4.5" +name := "selenium-4.6" organization := "org.scalatestplus" @@ -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