Menu
Open source

resourceType()

Contains the request’s resource type as it was perceived by the rendering engine. It will be one of the following: document, stylesheet, image, media, font, script, texttrack, xhr, fetch, eventsource, websocket, manifest, other.

Returns

TypeDescription
stringResource type name.

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 {
    const res = await page.goto('https://test.k6.io/');
    const req = res.request();

    const resourceType = req.resourceType();
    console.log(`resourceType: ${resourceType}`); // resourceType: Document
  } finally {
    await page.close();
  }
}