Class: Celerity::TableRow
- Includes:
- ClickableElement, Enumerable
- Defined in:
- lib/celerity/elements/table_row.rb
Constant Summary collapse
- TAGS =
[ Identifier.new('tr') ]
- DEFAULT_HOW =
:id
Constants inherited from Element
Element::ATTRIBUTES, Element::BASE_ATTRIBUTES, Element::CELLHALIGN_ATTRIBUTES, Element::CELLVALIGN_ATTRIBUTES, Element::HTML_401_TRANSITIONAL
Instance Attribute Summary
Attributes inherited from Element
Attributes included from Container
Instance Method Summary collapse
- #cells ⇒ Object (also: #tds)
-
#child_cell(index) ⇒ Object
(also: #[])
Get the child cell at the given index.
-
#column_count ⇒ Object
Number of cells in this row.
-
#each ⇒ Object
Yields each TableCell in this row to the given block.
- #locate ⇒ Object
Methods included from ClickableElement
#click, #click_and_attach, #double_click, #download, #right_click
Methods inherited from Element
#==, #assert_exists, #attribute_string, #attribute_value, #exists?, #fire_event, #focus, #focused?, #initialize, #javascript_object, #method_missing, #methods, #object, #parent, #respond_to?, #text, #to_s, #to_xml, #visible?, #xpath
Methods included from Container
#area, #areas, #button, #buttons, #cell, #check_box, #checkboxes, #container=, #contains_text, #dd, #dds, #del, #dels, #div, #divs, #dl, #dls, #dt, #dts, #em, #ems, #file_field, #file_fields, #form, #forms, #frame, #frames, #h1, #h1s, #h2, #h2s, #h3, #h3s, #h4, #h4s, #h5, #h5s, #h6, #h6s, #hidden, #hiddens, #image, #images, #ins, #inses, #inspect, #label, #labels, #li, #link, #links, #lis, #map, #maps, #meta, #metas, #ol, #ols, #option, #p, #pre, #pres, #ps, #radio, #radios, #row, #rows, #select_list, #select_lists, #span, #spans, #strong, #strongs, #table, #tables, #tbodies, #tbody, #text_field, #text_fields, #tfoot, #tfoots, #th, #thead, #theads, #ths, #ul, #uls
Methods included from ShortInspect
Constructor Details
This class inherits a constructor from Celerity::Element
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Celerity::Element
Instance Method Details
#cells ⇒ Object Also known as: tds
24 25 26 |
# File 'lib/celerity/elements/table_row.rb', line 24 def cells to_a end |
#child_cell(index) ⇒ Object Also known as: []
Get the child cell at the given index
33 34 35 36 37 38 39 40 41 |
# File 'lib/celerity/elements/table_row.rb', line 33 def child_cell(index) assert_exists if (index - Celerity.index_offset) >= @cells.length raise UnknownCellException, "Unable to locate a cell at index #{index}" end TableCell.new(self, :object, @cells[index - Celerity.index_offset]) end |
#column_count ⇒ Object
Number of cells in this row.
48 49 50 51 |
# File 'lib/celerity/elements/table_row.rb', line 48 def column_count assert_exists @cells.length end |
#each ⇒ Object
Yields each TableCell in this row to the given block.
19 20 21 22 |
# File 'lib/celerity/elements/table_row.rb', line 19 def each assert_exists @cells.each { |cell| yield TableCell.new(self, :object, cell) } end |
#locate ⇒ Object
9 10 11 12 13 |
# File 'lib/celerity/elements/table_row.rb', line 9 def locate super @cells = @object.getCells if @object @object end |