Method: Selenium::WebDriver::PointerActions#pointer_down
- Defined in:
- lib/selenium/webdriver/common/interactions/pointer_actions.rb
permalink #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)
49 50 51 |
# File 'lib/selenium/webdriver/common/interactions/pointer_actions.rb', line 49 def pointer_down( = :left, device: nil, **opts) (, :create_pointer_down, device: device, **opts) end |