Download ScalaWebTest core

The following jar file contains the ScalaWebTest core. Further dependencies and versions are available from Maven Central

Download ScalaWebTest core version 3.0.1 for Scala 2.13

Add ScalaWebTest to your sbt project

You can add ScalaWebTest to your integration testing dependencies in the build.sbt/scala of your sbt project as follows.

libraryDependencies += "org.scalawebtest" %% "scalawebtest-core" % "3.0.1" % "it" 

If you want to manage the most important transitive dependencies of ScalaWebTest, you might configure it as follows. Especially selenium-java and htmlunit-driver should align.

libraryDependencies ++= Seq(
    "org.scalawebtest" %% "scalawebtest-core" % "3.0.1" % "it",
    "org.scalatest" %% "scalatest" % "3.0.8" % "it",
    "org.seleniumhq.selenium" % "selenium-java" % "3.141.59" % "it",
    "org.seleniumhq.selenium" % "htmlunit-driver" % "2.35.1" % "it"
) 

Add ScalaWebTest to your maven project

You have to add the following dependency to your maven project to use ScalaWebTest.

<dependency>
    <groupId>org.scalawebtest</groupId>
    <artifactId>scalawebtest-core_2.13</artifactId>
    <version>3.0.1</version>
    <scope>test</scope>
</dependency> 

In case you want to manage the most important transitive dependencies of ScalaWebTest, you can add our bill-of-materials to your project. You may do so by adding the following dependency

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.scalawebtest</groupId>
            <artifactId>scalawebtest-bom_2.13</artifactId>
            <version>3.0.1</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>