Sha256: 6194bc35da87b993084ad3ae2e0afe572752fb06af76e792b7e8ccdcde6f0781
Contents?: true
Size: 464 Bytes
Versions: 10
Compression:
Stored size: 464 Bytes
Contents
module Fluent module WebElements class Cell < WebElement def initialize(web_element, platform) @web_element = web_element include_platform_specifics_for platform end def include_platform_specifics_for(platform) super end end ::Fluent::WebElements.class_for_tag[:td] = ::Fluent::WebElements::Cell ::Fluent::WebElements.class_for_tag[:th] = ::Fluent::WebElements::Cell end end
Version data entries
10 entries across 10 versions & 1 rubygems