Packages

  • package root
    Definition Classes
    root
  • package ru
    Definition Classes
    root
  • package tinkoff
    Definition Classes
    ru
  • package gatling
    Definition Classes
    tinkoff
  • package templates
    Definition Classes
    gatling
  • object HttpBodyExt

    This extension give ability to write something like this

    This extension give ability to write something like this

    http("PostData")
    .post(url)
    .jsonBody(
      "id" - 23,                    // in json - "id" : 23
      "name",                       // in json it interpreted as - "name" : get value from session variable ${name}
      "project" - (                 // in json - "project" : { ... }
        "id" ~ "projectId",         // in json - "id" : value from session var ${projectId}
        "name" - "Super Project",   // in json - "name": "Super Project"
        "sub" > ( 1,2,3,4,5,6)      // in json - "sub" : [ 1,2,3,4,5,6 ]
        )
      )
    Definition Classes
    templates
  • BodyOps

implicit final class BodyOps extends AnyVal

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BodyOps
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BodyOps(httpRequestBuilder: HttpRequestBuilder)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def body(string: String): HttpRequestBuilder
  6. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  7. val httpRequestBuilder: HttpRequestBuilder
  8. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  9. def jsonBody(fs: Field*): HttpRequestBuilder
  10. def toString(): String
    Definition Classes
    Any
  11. def xmlBody(fs: Field*): HttpRequestBuilder

Inherited from AnyVal

Inherited from Any

Ungrouped