class Selenium::WebDriver::Interactions::KeyInput
def create_key_down(key)
def create_key_down(key) add_action(TypingInteraction.new(self, :down, key)) end
def create_key_up(key)
def create_key_up(key) add_action(TypingInteraction.new(self, :up, key)) end
def initialize(name = nil)
def initialize(name = nil) super @type = Interactions::KEY end