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 28
def key(name)
  KeyInput.new(name)
end
none(name = nil) click to toggle source
# File lib/selenium/webdriver/common/interactions/interactions.rb, line 36
def none(name = nil)
  NoneInput.new(name)
end
pointer(kind, **kwargs) click to toggle source
# File lib/selenium/webdriver/common/interactions/interactions.rb, line 32
def pointer(kind, **kwargs)
  PointerInput.new(kind, **kwargs)
end