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

# double\_click

## Syntax

```python
Element.double_click()
```

## Usage

{% code title="correct usage" %}

```python
py.get('a').double_click()

---or--- # chain a Pylenium command

py.get('a').double_click().switch_to.window(index=1)
```

{% endcode %}

{% code title="incorrect usage" %}

```python
# Errors, 'double_click' yields Pylenium, not Element
py.get('a').double_click().text
```

{% endcode %}

## Arguments

* None

## Yields

* **(Pylenium)** The current instance of Pylenium so you can chain commands
