Documentation for automated readers
A curated documentation index is available at: https://grafana.com/llms.txt
A complete documentation index is available at: https://grafana.com/llms-full.txt
These indexes can help with page discovery before fetching individual documents.
This page is also available in Markdown, which may be easier for automated readers and AI tools to parse than HTML. The Markdown version is available at https://grafana.com/docs/k6/next/javascript-api/k6-browser/page/throttlenetwork.md, or by sending Accept: text/markdown to https://grafana.com/docs/k6/next/javascript-api/k6-browser/page/throttlenetwork/. For broader documentation discovery, the curated index is available at https://grafana.com/llms.txt and the complete index is available at https://grafana.com/llms-full.txt.
This is documentation for the next version of Grafana k6 documentation. For the latest stable release, go to the latest version.
throttleNetwork(networkProfile)
Throttles the network in Chrome/Chromium to slow it down by the specified fields in the networkProfile object.
| Parameter | Type | Default | Description |
|---|---|---|---|
| networkProfile | NetworkProfile | null | This is a mandatory parameter. |
| networkProfile.latency | number | 0 | Minimum latency from request sent to response headers received (ms). |
| networkProfile.download | number | -1 | Maximal aggregated download throughput (bytes/sec). -1 disables download throttling. |
| networkProfile.upload | number | -1 | Maximal aggregated upload throughput (bytes/sec). -1 disables upload throttling. |
To work with the most commonly tested network profiles, import networkProfiles from the browser module. There are three profiles available:
| Name | Notes |
|---|---|
'No Throttling' | No throttling, which is the default before applying any network throttling. This can be used to remove the network throttling. |
'Fast 3G' | Emulates a typical fast 3G connection |
'Slow 3G' | Emulates a typical slow 3G connection |
Returns
| Type | Description |
|---|---|
Promise<void> | A Promise that fulfills when the network has been throttled to the specified rate. |
Example
import { browser, networkProfiles } from 'k6/browser';
export const options = {
scenarios: {
browser: {
executor: 'shared-iterations',
options: {
browser: {
type: 'chromium',
},
},
},
},
};
export default async function () {
const context = await browser.newContext();
const page = await context.newPage();
try {
await page.throttleNetwork(networkProfiles['Slow 3G']);
await page.goto('https://test.k6.io/', { waitUntil: 'networkidle' });
} finally {
await page.close();
}
}Was this page helpful?
Related resources from Grafana Labs

