> 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/navigation/reload.md).

# reload

## Syntax

```python
py.reload() -> Pylenium
```

## Usage

```python
py.reload()
```

## Arguments

* None

## Yields

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

## Examples

```python
# Reload the page and click on the About link
py.reload().contains("About").click()
```

&#x20;
