Skip to content

Commit

Permalink
Bumped up versions for ScalaTest 3.2.17 and Selenium 4.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Sep 7, 2023
1 parent ebe547f commit c56cce9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ ScalaTest + Selenium provides integration support between ScalaTest and Selenium

**Usage**

To use it for ScalaTest 3.2.16 and Selenium 4.9.x:
To use it for ScalaTest 3.2.17 and Selenium 4.12.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "selenium-4-9" % "3.2.16.0" % "test"
libraryDependencies += "org.scalatestplus" %% "selenium-4-12" % "3.2.17.0" % "test"
```

Maven:

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

name := "selenium-4.9"
name := "selenium-4.12"

organization := "org.scalatestplus"

version := "3.2.16.0"
version := "3.2.17.0"

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

Expand All @@ -26,16 +26,16 @@ developers := List(
)
)

scalaVersion := "2.13.10"
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.17", "2.13.10", "3.1.3")
scalaVersion := "2.13.11"
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.17", "2.13.11", "3.1.3")

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-core" % "3.2.16",
"org.seleniumhq.selenium" % "selenium-java" % "4.9.1",
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.9.0",
"org.scalatest" %% "scalatest-core" % "3.2.17",
"org.seleniumhq.selenium" % "selenium-java" % "4.12.1",
"org.seleniumhq.selenium" % "htmlunit-driver" % "4.12.0",
"org.eclipse.jetty" % "jetty-webapp" % "9.4.48.v20220622" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.16" % Test,
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.16" % Test
"org.scalatest" %% "scalatest-funspec" % "3.2.17" % Test,
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.17" % Test
)

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

0 comments on commit c56cce9

Please sign in to comment.