---
title: "newPage() | Grafana k6 documentation"
description: "Creates a new page inside this BrowserContext."
---

# newPage()

Uses the [browser context](/docs/k6/latest/javascript-api/k6-browser/browsercontext/) to create and return a new [page](/docs/k6/latest/javascript-api/k6-browser/page/).

### Returns

Expand table

| Type            | Description                                                                                        |
|-----------------|----------------------------------------------------------------------------------------------------|
| `Promise<Page>` | A Promise that fulfills with a new [page](/docs/k6/latest/javascript-api/k6-browser/page/) object. |

### Example

JavaScript ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy

```javascript
import { browser } from 'k6/browser';

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

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