Returns the element.innerText.
Parameter | Type | Default | Description |
---|---|---|---|
options | object | null |
Type | Description |
---|---|
string | The innerText of the element. |
import { chromium } from 'k6/experimental/browser';
export default async function () { const browser = chromium.launch(); const page = browser.newPage();
await page.goto('https://test.k6.io/browser.php'); const offScreen = page.locator('#off-screen'); const innerText = offScreen.innerText(); console.log(innerText); // Off page div}