class Selenium::WebDriver::ActionBuilder

def initialize(bridge, devices: [], async: false, duration: 250)

def initialize(bridge, devices: [], async: false, duration: 250)
  @bridge = bridge
  @duration = duration
  @async = async
  @devices = []
  Array(devices).each { |device| add_input(device) }
end