module Selenium::WebDriver::Interactions
Constants
- KEY
- NONE
- POINTER
- SOURCE_TYPES
Public Class Methods
key(name)
click to toggle source
# File lib/selenium/webdriver/common/interactions/interactions.rb, line 29 def key(name) KeyInput.new(name) end
none(name = nil)
click to toggle source
# File lib/selenium/webdriver/common/interactions/interactions.rb, line 37 def none(name = nil) NoneInput.new(name) end
pointer(kind, **kwargs)
click to toggle source
# File lib/selenium/webdriver/common/interactions/interactions.rb, line 33 def pointer(kind, **kwargs) PointerInput.new(kind, **kwargs) end