module PageObject::Platforms::SeleniumWebDriver::TextArea

Public Instance Methods

value=(new_value) click to toggle source

Set the value of the TextArea

# File lib/page-object/platforms/selenium_webdriver/text_area.rb, line 10
def value=(new_value)
  element.clear
  element.send_keys(new_value)
end