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://quickpizza.grafana.com');
export default function () {
session.get('/api/names'); // baseUrl doesn't need to be repeated on every request
}