# Capturing Response ## Captures Captures are optional values captured from the HTTP response, in a named variable. Captures can be the response status code, part of or the entire the body, and response headers. Captured variables are available through a run session; each new value of a given variable overrides the last value. Captures allow using data from one request in another request, when working with [CSRF tokens] for instance. Variables can also be initialized at the start of the session, by passing [variable values], or can be used in [templates]. ```hurl # An example to show how to pass a CSRF token from one request # to another: # First GET request to get CSRF token value: GET https://example.org HTTP/1.1 200 # Capture the CSRF token value from html body. [Captures] csrf_token: xpath "normalize-space(//meta[@name='_csrf_token']/@content)" # Do the login ! POST https://acmecorp.net/login?user=toto&password=1234 X-CSRF-TOKEN: {{csrf_token}} HTTP/1.1 302 ``` Structure of a capture:
my_varvariable : xpath "string(//h1)"query
A capture consists of a variable name, followed by `:` and a query. The captures section starts with `[Captures]`. ### Query Query can be of the following type: - [`status`](#status-capture) - [`header`](#header-capture) - [`url`](#url-capture) - [`cookie`](#cookie-capture) - [`body`](#body-capture) - [`bytes`](#bytes-capture) - [`xpath`](#xpath-capture) - [`jsonpath`](#jsonpath-capture) - [`regex`](#regex-capture) - [`variable`](#variable-capture) - [`duration`](#duration-capture) ### Status capture Capture the received HTTP response status code. Status capture consists of a variable name, followed by a `:`, and the keyword `status`. ```hurl GET https://example.org HTTP/1.1 200 [Captures] my_status: status ``` ### Header capture Capture a header from the received HTTP response headers. Header capture consists of a variable name, followed by a `:`, then the keyword `header` and a header name. ```hurl POST https://example.org/login [FormParams] user: toto password: 12345678 HTTP/1.1 302 [Captures] next_url: header "Location" ``` ### URL capture Capture the last fetched URL. This is most meaningful if you have told Hurl to follow redirection (see [`[Options]`section][options] or [`--location` option]). URL capture consists of a variable name, followed by a `:`, and the keyword `url`. ```hurl GET https://example.org/redirecting [Options] location: true HTTP/* 200 [Captures] landing_url: url ``` ### Cookie capture Capture a [`Set-Cookie`] header from the received HTTP response headers. Cookie capture consists of a variable name, followed by a `:`, then the keyword `cookie` and a cookie name. ```hurl GET https://example.org/cookies/set HTTP/1.0 200 [Captures] session-id: cookie "LSID" ``` Cookie attributes value can also be captured by using the following format: `[cookie-attribute]`. The following attributes are supported: `Value`, `Expires`, `Max-Age`, `Domain`, `Path`, `Secure`, `HttpOnly` and `SameSite`. ```hurl GET https://example.org/cookies/set HTTP/1.0 200 [Captures] value1: cookie "LSID" value2: cookie "LSID[Value]" # Equivalent to the previous capture expires: cookie "LSID[Expires]" max-age: cookie "LSID[Max-Age]" domain: cookie "LSID[Domain]" path: cookie "LSID[Path]" secure: cookie "LSID[Secure]" http-only: cookie "LSID[HttpOnly]" same-site: cookie "LSID[SameSite]" ``` ### Body capture Capture the entire body (decoded as text) from the received HTTP response ```hurl GET https://example.org/home HTTP/1.1 200 [Captures] my_body: body ``` ### Bytes capture Capture the entire body (as a raw bytestream) from the received HTTP response ```hurl GET https://example.org/data.bin HTTP/1.1 200 [Captures] my_data: bytes ``` ### XPath capture Capture a [XPath] query from the received HTTP body decoded as a string. Currently, only XPath 1.0 expression can be used. ```hurl GET https://example.org/home # Capture the identifier from the dom node
5646eaf23
Explain that the value selected by the JSONPath is coerced to a string when only one node is selected. As with [XPath captures], JSONPath captures can be anything from string, number, to object and collections. For instance, if we have a JSON endpoint that returns the following JSON: ``` { "a_null": null, "an_object": { "id": "123" }, "a_list": [ 1, 2, 3 ], "an_integer": 1, "a float": 1.1, "a_bool": true, "a_string": "hello" } ``` We can capture the following paths: ```hurl GET https://example.org/captures-json HTTP/1.0 200 [Captures] an_object: jsonpath "$['an_object']" a_list: jsonpath "$['a_list']" a_null: jsonpath "$['a_null']" an_integer: jsonpath "$['an_integer']" a_float: jsonpath "$['a_float']" a_bool: jsonpath "$['a_bool']" a_string: jsonpath "$['a_string']" all: jsonpath "$" ``` ### Regex capture Capture a regex pattern from the HTTP received body, decoded as text. ```hurl GET https://example.org/helloworld HTTP/1.0 200 [Captures] id_a: regex "id_a:([0-9]+)!" id_b: regex "id_b:(\\d+)!" name: regex "Hello ([a-zA-Z]+)!" ``` Pattern of the regex query must have at least one capture group, otherwise the capture will fail. Metacharacters beginning with a backslash in the pattern (like `\d`, `\s`) must be escaped: `regex "(\\d+)!"` will capture one or more digit. ### Variable capture Capture the value of a variable into another. ```hurl GET https://example.org/helloworld HTTP/1.0 200 [Captures] in: body name: variable "in" regex "Hello ([a-zA-Z]+)!" ``` ### Duration capture Capture the response time of the request in ms. ```hurl GET https://example.org/helloworld HTTP/1.0 200 [Captures] duration_in_ms: duration ``` ## Filters Optionally, query can be refined using filters `count` and `regex`.
my_varvariable : xpath "string(//h1)"query regex "(\\d+)"filter (optional)
### Count filter Returns the count of a collection. ```hurl GET https://pets.org/cats/cutest HTTP/1.0 200 [Captures] cats_size: jsonpath "$.cats" count ``` ### Regex filter ```hurl GET https://pets.org/cats/cutest HTTP/1.0 200 # Cat name are structured like this `meow + id`: for instance `meow123456` [Captures] id: jsonpath "$.cats[0].name" regex "meow(\\d+)" ``` Pattern of the regex filter must have at least one capture group, otherwise the capture will fail. Metacharacters beginning with a backslash in the pattern (like `\d`, `\s`) must be escaped: `regex "(\\d+)!"` will capture one or more digit. [CSRF tokens]: https://en.wikipedia.org/wiki/Cross-site_request_forgery [variable values]: /docs/manual.md#variable [templates]: /docs/templates.md [`Set-Cookie`]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie [XPath]: https://en.wikipedia.org/wiki/XPath [JSONPath]: https://goessner.net/articles/JsonPath/ [XPath captures]: #xpath-capture [Javascript-like Regular expression syntax]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions [options]: /docs/request.md#options [`--location` option]: /docs/manual.md#location