class Selenium::WebDriver::Interactions::Interaction
Constants
- PAUSE
Attributes
source[R]
Public Class Methods
new(source)
click to toggle source
# File lib/selenium/webdriver/common/interactions/interaction.rb, line 28 def initialize(source) unless Interactions::SOURCE_TYPES.include? source.type raise TypeError, "#{source.type} is not a valid input type" end @source = source end