Module: SectionsMenu
- Includes:
- PageObject
- Defined in:
- lib/kuali-sakai-common-lib/sections.rb
Overview
Sections Pages for a Site
Instance Method Summary collapse
-
#add_sections ⇒ Object
Clicks the Add Sections button/link and instantiates the AddEditSections Class.
- #options ⇒ Object
- #overview ⇒ Object
- #student_memberships ⇒ Object
Instance Method Details
#add_sections ⇒ Object
Clicks the Add Sections button/link and instantiates the AddEditSections Class.
9 10 11 12 |
# File 'lib/kuali-sakai-common-lib/sections.rb', line 9 def add_sections frm.link(:text=>"Add Sections").click AddEditSections.new(@browser) end |
#options ⇒ Object
24 25 26 27 |
# File 'lib/kuali-sakai-common-lib/sections.rb', line 24 def frm.link(:text=>"Options").click SectionsOptions.new(@browser) end |
#overview ⇒ Object
14 15 16 17 |
# File 'lib/kuali-sakai-common-lib/sections.rb', line 14 def overview frm.link(:text=>"Overview").click Sections.new(@browser) end |
#student_memberships ⇒ Object
19 20 21 22 |
# File 'lib/kuali-sakai-common-lib/sections.rb', line 19 def student_memberships frm.link(:text=>"Student Memberships").click StudentMemberships.new(@browser) end |