Method: Selenium::WebDriver::Interactions::PointerInput#create_pointer_down

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

#create_pointer_down(button, **opts) ⇒ 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.

[View source]

56
57
58
# File 'lib/selenium/webdriver/common/interactions/pointer_input.rb', line 56

def create_pointer_down(button, **opts)
  add_action(PointerPress.new(self, :down, button, **opts))
end