> 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/switch-to/switch_to.default_content.md).

# default\_content

## Syntax

```python
py.switch_to.default_content() -> Pylenium
```

## Usage

{% code title="correct usage" %}

```python
py.switch_to.default_content()

---or--- # chain a Pylenium command in the new context

py.switch_to.default_content().get(".link")
```

{% endcode %}

## Arguments

* None

## Yields

* <mark style="color:orange;">**Pylenium**</mark> - The current instance of Pylenium so you can chain commands

{% hint style="info" %}
If the driver is already in the default context, nothing changes
{% endhint %}
