Module: EditQuestionPoolMethods
- Includes:
- PageObject
- Defined in:
- lib/kuali-sakai-common-lib/assessments.rb
Overview
The Page that appears when editing an existing question pool
Instance Method Summary collapse
-
#add_question ⇒ Object
Clicks the Add Question link, then instantiates the SelectQuestionType class.
-
#question_pools ⇒ Object
Clicks the Question Pools link, then instantiates the QuestionPoolsList class.
Instance Method Details
#add_question ⇒ Object
Clicks the Add Question link, then instantiates the SelectQuestionType class.
770 771 772 773 |
# File 'lib/kuali-sakai-common-lib/assessments.rb', line 770 def add_question frm.link(:id=>"editform:addQlink").click SelectQuestionType.new(@browser) end |
#question_pools ⇒ Object
Clicks the Question Pools link, then instantiates the QuestionPoolsList class.
777 778 779 780 |
# File 'lib/kuali-sakai-common-lib/assessments.rb', line 777 def question_pools frm.link(:text=>"Question Pools").click QuestionPoolsList.new(@browser) end |