Module: BlogsMethods
- Includes:
- PageObject
- Defined in:
- lib/kuali-sakai-common-lib/blogs.rb
Instance Method Summary collapse
-
#blogger_list ⇒ Object
Returns an array containing the list of Bloggers in the “All the blogs” table.
Instance Method Details
#blogger_list ⇒ Object
Returns an array containing the list of Bloggers in the “All the blogs” table.
10 11 12 13 14 15 16 17 |
# File 'lib/kuali-sakai-common-lib/blogs.rb', line 10 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 |