Sha256: caeaba08f09b8f5236cb5e88db10a0e760ac34920ba0de5cc118b94dbd99fd47
Contents?: true
Size: 582 Bytes
Versions: 16
Compression:
Stored size: 582 Bytes
Contents
module Capybara module Node ## # # A {Capybara::Document} represents an HTML document. Any operation # performed on it will be performed on the entire document. # # @see Capybara::Node # class Document < Base include Capybara::Node::DocumentMatchers def inspect %(#<Capybara::Document>) end ## # # @return [String] The text of the document # def text(type=nil) find(:xpath, '/html').text(type) end def title session.driver.title end end end end
Version data entries
16 entries across 16 versions & 4 rubygems