Sha256: d706072c6b8c6aade783d468bca9f816a982b832d2d247bde1e355a7d4000871
Contents?: true
Size: 623 Bytes
Versions: 10
Compression:
Stored size: 623 Bytes
Contents
module Fluent module WebElements class TextArea < WebElement def initialize(web_element, platform) @web_element = web_element include_platform_specifics_for platform end def include_platform_specifics_for(platform) super if platform[:platform] == :watir_webdriver require 'fluent/platform_watir/platform_web_elements/text_area' self.class.send :include, Fluent::Platforms::WatirWebDriver::TextArea end end end ::Fluent::WebElements.class_for_tag[:textarea] = ::Fluent::WebElements::TextArea end end
Version data entries
10 entries across 10 versions & 1 rubygems