teamcapybara--capybara/lib/capybara/node/document.rb

18 lines
323 B
Ruby

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
def inspect
%(#<Capybara::Document>)
end
end
end
end