module Symbiont module WebObjects class TableCell < WebObject def initialize(web_object, platform) @web_object = web_object end def enabled? true end def self.usable_selectors_for_watir super + [:text] end def self.usable_selectors_for_selenium super + [:text] end end # class: TableCell ::Symbiont::WebObjects.class_for_tag[:td] = ::Symbiont::WebObjects::TableCell ::Symbiont::WebObjects.class_for_tag[:th] = ::Symbiont::WebObjects::TableCell end # module: WebObjects end # module: Symbiont