Class: Selenium::WebDriver::Element

Inherits:
Object
  • Object
show all
Includes:
Kirchhoff::CommonInterface
Defined in:
lib/kirchhoff.rb

Instance Method Summary collapse

Methods included from Kirchhoff::CommonInterface

#find, #find_text, #multi_find, #multi_find_text, #to_html, #to_nokogiri

Instance Method Details

#clickObject



92
93
94
# File 'lib/kirchhoff.rb', line 92

def click
  origin_click()
end

#fill(text) ⇒ Object



96
97
98
99
100
# File 'lib/kirchhoff.rb', line 96

def fill(text)
  $focus = self
  send_key(text)
  Kirchhoff::Logger.call :info, "fill '#{text}'"
end

#origin_clickObject



90
# File 'lib/kirchhoff.rb', line 90

alias :origin_click :click