Menu

This is documentation for the next version of K6. For the latest stable release, go to the latest version.

Open source

asElement()

Returns either null or the object handle itself, provided the object handle is an instance of ElementHandle.

Returns

TypeDescription
ElementHandle | nullThe ElementHandle if available.

Example

JavaScript
import { browser } from 'k6/browser';

export const options = {
  scenarios: {
    ui: {
      executor: 'shared-iterations',
      options: {
        browser: {
          type: 'chromium',
        },
      },
    },
  },
};

export default async function () {
  const page = await browser.newPage();

  try {
    await page.goto('https://test.k6.io/');
    const jsHandle = await page.evaluateHandle(() => document.head);

    const element = jsHandle.asElement();
    console.log(await element.innerHTML()); // <main class="page">...
  } finally {
    await page.close();
  }
}