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

input PointOptions {
  x: Int
  y: Int
}

Fields

x: Int

The x-coordinate of the point, in pixels.

y: Int

The y-coordinate of the point, in pixels.