> ## 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.

# FillAction

> Fill an input field with a value

**Example:**

```python theme={null}
session.execute(type="fill", id="email-input", value="user@example.com")
session.execute(type="fill", id="name-input", value="John Doe", clear_before_fill=False)
```

## Fields

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

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

<ParamField path="description" type="str" default="Fill an input field with a value" />

<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='str' default=None values=[]" />

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

<ParamField path="value" type="UnionType[str, ValueWithPlaceholder]" required />

<ParamField path="clear_before_fill" type="bool" default="True" />

## Module

`notte_core.actions.actions`
