Class: Selenium::WebDriver::Element
Instance Method Summary
collapse
#find, #find_text, #multi_find, #multi_find_text, #to_html, #to_nokogiri
Instance Method Details
#click ⇒ Object
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_click ⇒ Object
90
|
# File 'lib/kirchhoff.rb', line 90
alias :origin_click :click
|