module Symbiont module WebObjects class WebObject def initialize(web_object) @web_object = web_object end def text @web_object.text end def when_actionable(timeout) @web_object.wait_until_present(timeout) self end end # class: WebObject end # module: WebObjects end # module: Symbiont