> ## Documentation Index
> Fetch the complete documentation index at: https://docs.notte.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# FallbackFillAction

> Fill an input field with a value

Only use if explicitly asked, or you failed to input with the normal fill action.

**Example:**

```python theme={null}
session.execute(type="fallback_fill", id="difficult-input", value="fallback text")
```

## Fields

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

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

<ParamField path="description" type="str" default="Fill an input field with a value. Only use if explicitly asked, or you failed to input with the normal fill action" />

<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="15000">
  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`
