This is documentation for the next version of K6. For the latest stable release, go to the latest version.
setBaseUrl( url )
Parameter | Type | Description |
---|---|---|
baseURL | string | Base URL to be used for all requests issued in the session |
Example
import { Httpx } from 'https://jslib.k6.io/httpx/0.1.0/index.js';
const session = new Httpx();
session.setBaseUrl('https://test-api.k6.io');
export default function () {
session.get('/public/crocodiles/1/'); // baseUrl doesn't need to be repeated on every request
}