module PageObject::Platforms::WatirWebDriver::TextArea

Public Instance Methods

clear() click to toggle source

Clear the TextArea

# File lib/page-object/platforms/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/watir_webdriver/text_area.rb, line 10
def value=(new_value)
  element.set(new_value)
end