---
title: "title() | Grafana k6 documentation"
description: "Browser module: page.title method"
---

# title()

Returns the page’s title.

### Returns

Expand table

| Type              | Description                                    |
|-------------------|------------------------------------------------|
| `Promise<string>` | A Promise that fulfills with the page’s title. |

### Example

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

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

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

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

  await page.goto('https://test.k6.io/browser.php');
  console.log(await page.title());
}
```
