Method: Selenium::WebDriver::Interactions::PointerInput#create_pointer_move
- Defined in:
- lib/selenium/webdriver/common/interactions/pointer_input.rb
#create_pointer_move(duration: 0, x: 0, y: 0, origin: nil) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
52 53 54 |
# File 'lib/selenium/webdriver/common/interactions/pointer_input.rb', line 52 def create_pointer_move(duration: 0, x: 0, y: 0, origin: nil, **) add_action(PointerMove.new(self, duration, x, y, origin: origin, **)) end |