1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Added some documentation for Node

This commit is contained in:
Jonas Nicklas 2010-07-16 22:07:14 +02:00
parent a5ecac322b
commit 6ba5d8f9fd

View file

@ -3,6 +3,27 @@ require 'capybara/node/actions'
require 'capybara/node/matchers'
module Capybara
##
#
# A Capybara::Node represents either an element on a page through the subclass
# Capybara::Element or a document through Capybara::Document.
#
# Both types of Node share the same methods, used for interacting with the
# elements on the page. These methods are devided into three categories,
# finders, actions and matchers. These are found in the modules
# Capybara::Node::Finders, Capybara::Node::Actions and Capybara::Node::Matchers
# respectively.
#
# A Capybara::Session exposes all methods from Capybara::Document directly:
#
# session = Capybara::Session.new(:rack_test, my_app)
# session.visit('/')
# session.fill_in('Foo', :with => 'Bar') # from Capybara::Node::Actions
# bar = session.locate('#bar') # from Capybara::Node::Finders
# bar.select('Baz', :from => 'Quox') # from Capybara::Node::Actions
# session.has_css('#foobar') # from Capybara::Node::Matchers
#
class Node
attr_reader :session, :base
@ -22,55 +43,152 @@ module Capybara
end
end
##
#
# A Capybara::Element represents a single element on the page. It is possible
# to interact with the contents of this element the same as with a document:
#
# session = Capybara::Session.new(:rack_test, my_app)
#
# bar = session.locate('#bar') # from Capybara::Node::Finders
# bar.select('Baz', :from => 'Quox') # from Capybara::Node::Actions
#
# Elements also have access to HTML attributes and other properties of the
# element:
#
# bar.value
# bar.text
# bar[:title]
#
# @see Capybara::Node
#
class Element < Node
##
#
# @return [Object] The native element from the driver, this allows access to driver specific methods
#
def native
base.native
end
##
#
# @return [String] The text of the element
#
def text
base.text
end
##
#
# Retrieve the given attribute
#
# element[:title] # => HTML title attribute
#
# @param [Symbol] attribute The attribute to retrieve
# @return [String] The value of the attribute
#
def [](attribute)
base[attribute]
end
##
#
# @return [String] The value of the form element
#
def value
base.value
end
##
#
# Set the value of the form element to the given value.
#
# @param [String] value The new value
#
def set(value)
base.set(value)
end
##
#
# Select the given option if the element is a select box
#
# @param [String] option The option to select
#
def select_option(option)
base.select_option(option)
end
##
#
# Unselect the given option if the element is a select box
#
# @param [String] option The option to unselect
#
def unselect_option(option)
base.unselect_option(option)
end
##
#
# Click the Element
#
def click
base.click
end
##
#
# @return [String] The tag name of the element
#
def tag_name
base.tag_name
end
def visible
##
#
# Whether or not the element is visible. Not all drivers support CSS, so
# the result may be inaccurate.
#
# @return [Boolean] Whether the element is visible
#
def visible?
base.visible?
end
##
#
# An XPath expression describing where on the page the element can be found
#
# @return [String] An XPath expression
#
def path
base.path
end
##
#
# Trigger any event on the current element, for example mouseover or focus
# events. Does not work in Selenium.
#
# @param [String] event The name of the event to trigger
#
def trigger(event)
base.trigger(event)
end
##
#
# Drag the element to the given other element.
#
# source = page.locate('#foo')
# target = page.locate('#bar')
# source.drag_to(target)
#
# @param [Capybara::Element] node The element to drag to
#
def drag_to(node)
base.drag_to(node.base)
end