skrape{it}
1.1.X
1.1.X
  • Introduction
  • Why it exists
  • overview
    • Setup
    • Who should be using it
  • Http Client
    • Overview
    • Fetchers
      • HttpFetcher
      • BrowserFetcher
      • AsyncFetcher
      • Implement your own
    • Request Options
    • Pre-configure client
    • Response
      • Status
      • Cookies
  • Html Parser
    • Parsing HTML
  • assertions
    • expect content
  • How to Use
    • Testing
    • Scraping
    • JS-rendered sites
  • Examples
    • Grab all links from a Website
    • Creating a RESTful API (Spring-Boot)
  • GitHub Repo
  • Extensions
    • MockMvc
      • Getting Started
      • GitHub Repo
    • Ktor
      • Getting Started
      • GitHub Repo
  • About skrape{it}
Powered by GitBook
On this page

Was this helpful?

  1. Extensions
  2. MockMvc

Getting Started

Just add the following to your existing Spring Project:

build.gradle.kts
dependencies {
    compile("it.skrape:skrapeit-mock-mvc-extension:1.0.0")
}
pom.xml
<dependency>
  <groupId>it.skrape</groupId>
  <artifactId>skrapeit-mock-mvc-extension</artifactId>
  <version>1.0.0</version>
</dependency>
PreviousMockMvcNextKtor

Last updated 4 years ago

Was this helpful?