No results for

Powered byAlgolia

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);
}