Class: Matrices
- Defined in:
- lib/sambal-cle/page_objects/matrix.rb
Instance Method Summary collapse
Methods inherited from BasePage
basic_page_elements, button, damballa, frame_element, link
Instance Method Details
#matrices_list ⇒ Object
38 39 40 41 42 43 44 45 46 |
# File 'lib/sambal-cle/page_objects/matrix.rb', line 38 def matrices_list text_array = matrix_table.to_a text_array.delete_at(0) # deletes the header row which is useless list=[] text_array.each do |line| list << line[0] end list end |