> 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/element-commands/actions/scroll_into_view.md).

# scroll\_into\_view

## Syntax

```
Element.scroll_into_view()
```

## Usage

{% code title="correct usage" %}

```python
py.get('#footer-link').scroll_into_view()
```

{% endcode %}

{% code title="incorrect usage" %}

```python
# 'py' does not have this command
py.scroll_into_view()
```

{% endcode %}

## Arguments

* None

## Yields

* **(Element)** so you can chain another command
