module PageObject::Platforms::LdsWatirWebDriver::TextArea
Public Instance Methods
clear()
click to toggle source
Clear the TextArea
# File lib/page-object/platforms/lds_watir_webdriver/text_area.rb, line 17 def clear element.wd.clear end
value=(new_value)
click to toggle source
Set the value of the TextArea
# File lib/page-object/platforms/lds_watir_webdriver/text_area.rb, line 10 def value=(new_value) element.set(new_value) end