No results for

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

Returns the name of the BrowserType; currently it will return chromium.

Returns

TypeDescription
stringCurrently returns chromium

Example

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