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

# touch

Performs a touch action at a specific point on the screen.
This is a low-level touch event. For interacting with elements, prefer `tap`.
Example: `touch(target: { x: 100, y: 200 })`
Returns true if the touch action was successful.

## Definition

```graphql theme={null}
touch(
  target: PointOptions!
): Boolean!
```

## Arguments

### `target`

[PointOptions!](/reference/graphql/inputs/point-options)

The target coordinates (x, y) for the touch action.

## Returns

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

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