No results for

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

setContent(html[, options])

Sets the supplied HTML string to the current page.

ParameterTypeDefaultDescription
html
string''HTML markup to assign to the page.
options
objectnull

Example

import { chromium } from 'k6/experimental/browser';
export default async function () {
const browser = chromium.launch();
const page = browser.newPage();
const htmlContent = `
<!doctype html>
<html>
<head><meta charset='UTF-8'><title>Test</title></head>
<body>Test</body>
</html>
`;
page.setContent(htmlContent);
}