Parameter | Type | Description |
---|---|---|
headers | object | Object |
import { Httpx } from 'https://jslib.k6.io/httpx/0.0.1/index.js';let session = new Httpx();session.addTags({ 'Tag1': 'value1', 'Tag2': 'value2', 'Tag3': 'value3',});export default function () { session.get('https://test-api.k6.io/public/crocodiles/1/'); }