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
permalink #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 |
permalink #options ⇒ Object
[View source]
24 25 26 27 |
# File 'lib/kuali-sakai-common-lib/sections.rb', line 24 def frm.link(:text=>"Options").click SectionsOptions.new(@browser) end |
permalink #overview ⇒ Object
[View source]
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 |
permalink #student_memberships ⇒ Object
[View source]
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 |