title()
Returns the page’s title.
Returns
| Type | Description | 
|---|---|
Promise<string> | A Promise that fulfills with the page’s title. | 
Example
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());
}

