Method: Selenium::WebDriver::PointerActions#move_to_location
- Defined in:
- lib/selenium/webdriver/common/interactions/pointer_actions.rb
permalink #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
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 |