> ## Documentation Index
> Fetch the complete documentation index at: https://notte-experiment-visibility-md-links.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# CheckAction

> Check a checkbox

Use `True` to check, `False` to uncheck.

**Example:**

```python theme={null}
session.execute(type="check", id="terms-checkbox", value=True)
session.execute(type="check", id="newsletter-checkbox", value=False)
```

## Fields

<ParamField path="type" type="Literal['check']" default="check" />

<ParamField path="category" type="str" default="Interaction Actions" />

<ParamField path="description" type="str" default="Check a checkbox. Use `True` to check, `False` to uncheck" />

<ParamField path="id" type="str" default="" />

<ParamField path="selector" type="UnionType[str, NodeSelectors, None]" />

<ParamField path="press_enter" type="UnionType[bool, None]" />

<ParamField path="text_label" type="UnionType[str, None]" />

<ParamField path="param" type="UnionType[ActionParameter, None]" default="name='value' type='bool' default=None values=[]" />

<ParamField path="timeout" type="int" default="5000">
  Action timeout in milliseconds
</ParamField>

<ParamField path="value" type="bool" required />

## Module

`notte_core.actions.actions`
