Method: Selenium::WebDriver::PointerActions#move_to_location

Defined in:
lib/selenium/webdriver/common/interactions/pointer_actions.rb

#move_to_location(x, y, device: nil, duration: default_move_duration, **opts) ⇒ ActionBuilder

Moves the pointer to a given location in the viewport.

The viewport is not scrolled if the coordinates provided are outside the viewport. MoveTargetOutOfBoundsError will be raised if the offsets are outside the viewport

Examples:

Move the pointer to a certain position in the viewport


driver.action.move_to_location(100, 100).perform

Parameters:

  • x (Integer)

    horizontal position. Equivalent to a css ‘left’ value.

  • y (Integer)

    vertical position. Equivalent to a css ‘top’ value.

  • device (Symbol || String) (defaults to: nil)

    optional name of the PointerInput device to move

Returns:

Raises:

  • (MoveTargetOutOfBoundsError)

    if the provided x or y value is outside the document’s boundaries.

[View source]

153
154
155
156
157
158
159
160
161
162
# File 'lib/selenium/webdriver/common/interactions/pointer_actions.rb', line 153

def move_to_location(x, y, device: nil, duration: default_move_duration, **opts)
  pointer = pointer_input(device)
  pointer.create_pointer_move(duration: duration,
                              x: Integer(x),
                              y: Integer(y),
                              origin: Interactions::PointerMove::VIEWPORT,
                              **opts)
  tick(pointer)
  self
end