No results for

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

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