Sha256: d06162bae41f75268952a5a50d5ca725b548fde0480997a504da4dc0f38d4643

Contents?: true

Size: 282 Bytes

Versions: 2

Compression:

Stored size: 282 Bytes

Contents

module PageObject
  module Platforms
    module Selenium

      module TextArea
        
        #
        # Set the value of the TextArea
        #
        def value=(new_value)
          element.clear
          element.send_keys(new_value)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
page-object-0.2.5 lib/page-object/platforms/selenium/text_area.rb
page-object-0.2.4 lib/page-object/platforms/selenium/text_area.rb