Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Open source

newPage()

Uses the BrowserContext to create a new Page and returns it.

Returns

TypeDescription
objectA new Page object.

Example

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

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

  try {
    await page.goto('https://test.k6.io/browser.php');
  } finally {
    page.close();
  }
}