No results for

Powered byAlgolia
⚠️ This is archived documentation for v0.43. Go to the latest version

executablePath()

Returns the path where the extension expects to find the browser executable.

Returns

TypeDescription
stringThe expected browser executable path

Example

import { chromium } from 'k6/experimental/browser';
export default function () {
const execPath = chromium.executablePath();
console.log(execPath);
}