No results for

Powered byAlgolia
⚠️ This documentation is outdated. Please visit grafana.com for the latest k6 documentation.📚

setOffline(offline)

Toggles the BrowserContext's connectivity on/off.

ParameterTypeDefaultDescription
offlinebooleanfalseWhether to emulate the BrowserContext being disconnected (true) or connected (false).

Example

import { chromium } from 'k6/experimental/browser';
export default async function () {
const browser = chromium.launch();
const context = browser.newContext();
context.setOffline(true);
const page = context.newPage();
try {
// Will not be able to load the page
await page.goto('https://test.k6.io/browser.php');
} finally {
page.close();
browser.close();
}
}