This is documentation for the next version of K6. For the latest stable release, go to the latest version.
options( url, [body], [params] )
Parameter | Type | Description |
---|---|---|
url | string /HTTP URL | Request URL (e.g. http://example.com ). |
body (optional) | string / object / ArrayBuffer | Request body; objects will be x-www-form-urlencoded . |
params (optional) | object | Params object containing additional request parameters. |
Returns
Type | Description |
---|---|
Response | HTTP Response object. |
Example
import http from 'k6/http';
const url = 'https://httpbin.test.k6.io/';
export default function () {
const params = { headers: { 'X-MyHeader': 'k6test' } };
const res = http.options(url, null, params);
console.log(res.headers['Allow']);
}