class Selenium::WebDriver::Interactions::NoneInput

Public Instance Methods

encode() click to toggle source
# File lib/selenium/webdriver/common/interactions/none_input.rb, line 28
def encode
  return nil if no_actions?

  {type: type, id: name, actions: @actions.map(&:encode)}
end
type() click to toggle source
# File lib/selenium/webdriver/common/interactions/none_input.rb, line 24
def type
  Interactions::NONE
end