> For the complete documentation index, see [llms.txt](https://docs.pylenium.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pylenium.io/driver-commands/browser/title.md).

# title

## Syntax

```python
py.title() -> str
```

## Usage

{% code title="correct usage" %}

```python
py.title()
```

{% endcode %}

{% code title="incorrect usage" %}

```python
py.title
```

{% endcode %}

## Arguments

* None

## Yields

* <mark style="color:orange;">**str**</mark>  - The <mark style="color:purple;">`document.title`</mark> property of the current page

## Examples

```python
assert py.title() == "QA at the Point"
```
