No results for

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

setDefaultNavigationTimeout(timeout)

Sets the default maximum navigation timeout for Page.goto().

ParameterTypeDefaultDescription
timeoutnumberDependent on the action.The timeout in milliseconds.

Example

import { chromium } from 'k6/experimental/browser';
export default async function () {
const browser = chromium.launch();
const context = browser.newContext();
const page = context.newPage();
context.setDefaultNavigationTimeout(1000); // 1s
try {
await page.goto('https://httpbin.test.k6.io/delay/5');
} finally {
page.close();
browser.close();
}
}