Sha256: 4d8bedd5488fef3910722984304df4116e3391424ddae09f1fa2193d08fab1a6
Contents?: true
Size: 693 Bytes
Versions: 18
Compression:
Stored size: 693 Bytes
Contents
# frozen_string_literal: true 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 ## # # @return [String] The title of the document # def title session.driver.title end end end end
Version data entries
18 entries across 18 versions & 2 rubygems