Method: Selenium::WebDriver::PointerActions#pointer_down

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

#pointer_down(button = :left, device: nil, **opts) ⇒ ActionBuilder

Presses (without releasing) at the current location of the PointerInput device. This is equivalent to:

driver.action.click_and_hold(nil)

Examples:

Clicking and holding at the current location


driver.action.pointer_down(:left).perform

Parameters:

Returns:

[View source]

49
50
51
# File 'lib/selenium/webdriver/common/interactions/pointer_actions.rb', line 49

def pointer_down(button = :left, device: nil, **opts)
  button_action(button, :create_pointer_down, device: device, **opts)
end