> ## Documentation Index
> Fetch the complete documentation index at: https://www.testmuai.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Title Assertions

> Verify the browser tab document.title, useful for confirming navigation reached the expected page.

***

<Note>
  **Using Claude Code, Cursor, or another coding agent?** Paste this into your prompt to run cross-browser and real-device tests, debug sessions, and wire up CI on the TestMu AI cloud:

  ```
  Read https://www.testmuai.com/support/docs/SKILL.md to set up TestMu AI (formerly LambdaTest) cloud testing.
  ```
</Note>

Title assertions check the browser tab's document title (`document.title`).

## When It's Used

* Page title verification: "title contains Dashboard"
* Navigation confirmation: "title is Home Page"

## Examples

### Assertions

```
Assert: page title contains "Dashboard"
Assert: title is "My Account - Settings"
```

### Extractions

```
Store the page title
```

## How It Works

1. KaneAI reads `page.title()` directly
2. The title string is compared against the expected value
3. No screenshot or DOM analysis needed, this is a direct read
