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

# right\_click

## Syntax

```
Element.right_click()
```

## Usage

{% code title="correct usage" %}

```python
py.get('#context-menu').right_click()
```

{% endcode %}

{% code title="incorrect usage" %}

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

{% endcode %}

## Arguments

* None

## Yields

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