Class: Blogs
- Defined in:
- lib/sambal-cle/page_objects/blogs.rb
Instance Method Summary collapse
-
#blogger_list ⇒ Object
Returns an array containing the list of Bloggers in the “All the blogs” table.
Methods inherited from BlogsBase
Methods inherited from BasePage
basic_page_elements, button, damballa, frame_element, link
Instance Method Details
#blogger_list ⇒ Object
Returns an array containing the list of Bloggers in the “All the blogs” table.
19 20 21 22 23 24 25 26 |
# File 'lib/sambal-cle/page_objects/blogs.rb', line 19 def blogger_list bloggers = [] frm.table(:class=>"listHier lines").rows.each do |row| bloggers << row[1].text end bloggers.delete_at(0) return bloggers end |