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

# PointOptions

Input options for specifying a point with x and y coordinates.
Used for clicks, hovers, touch actions at specific locations.
Coordinates are typically relative to the top-left of an element or viewport.

## Definition

```graphql theme={null}
input PointOptions {
  x: Int
  y: Int
}
```

## Fields

### `x`

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

The x-coordinate of the point, in pixels.

### `y`

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

The y-coordinate of the point, in pixels.
