Class: Glossary

Inherits:
BasePage show all
Defined in:
lib/sambal-cle/page_objects/glossary.rb

Overview

Glossary Pages - for a Portfolio Site

Instance Method Summary collapse

Methods inherited from BasePage

basic_page_elements, button, damballa, frame_element, link

Instance Method Details

#termsObject

Returns an array containing the string values of the terms displayed in the list.



22
23
24
25
26
27
28
29
# File 'lib/sambal-cle/page_objects/glossary.rb', line 22

def terms
  term_list = []
  frm.table(:class=>"listHier lines nolines").rows.each do |row|
    term_list << row[0].text
  end
  term_list.delete_at(0)
  return term_list
end