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

# WaitForOptions

Input options for mutations that involve waiting for navigation or page load, like 'goBack', 'goForward', 'reload', 'waitForURL'.

## Definition

```graphql theme={null}
input WaitForOptions {
  timeout: Int
  waitUntil: LifecycleEvent
}
```

## Fields

### `timeout`

[Int](/reference/graphql/scalars/int)

Maximum navigation time in milliseconds. Defaults to 30000 (30 seconds). Set to 0 to disable timeout.

### `waitUntil`

[LifecycleEvent](/reference/graphql/enums/lifecycle-event)

When to consider navigation succeeded. Defaults to `LOAD`. See LifecycleEvent enum.
