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

# type

Simulates typing text into the currently focused element or the page.
This is like multiple key presses for each character in the text.
Example: `type(text: "Hello, world!")`
Returns true if the text was successfully typed.

## Definition

```graphql theme={null}
type(
  text: String!
  options: TypeOptions
): Boolean!
```

## Arguments

### `text`

[String!](/reference/graphql/scalars/string)

The text to type.

### `options`

[TypeOptions](/reference/graphql/inputs/type-options)

Options for typing, such as inter-character delay.

## Returns

[Boolean!](/reference/graphql/scalars/boolean)

The `Boolean` scalar type represents `true` or `false`.
