Class: ConfirmSubmission

Inherits:
AssessmentsBase show all
Defined in:
lib/sakai-cle-test-api/page_objects/assessments.rb

Overview

The confirmation page that appears when submitting an Assessment. The last step before actually submitting the the Assessment.

Instance Method Summary collapse

Methods inherited from AssessmentsBase

menu_bar_elements, pool_page_elements, question_page_elements

Methods inherited from BasePage

basic_page_elements, frame_element

Methods inherited from PageMaker

element, expected_element, expected_title, #initialize, #method_missing, page_url

Constructor Details

This class inherits a constructor from PageMaker

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class PageMaker

Instance Method Details

#submit_for_gradingObject

Clicks the Submit for Grading button and instantiates the SubmissionSummary Class.



853
854
855
856
# File 'lib/sakai-cle-test-api/page_objects/assessments.rb', line 853

def submit_for_grading
  frm.button(:value=>"Submit for Grading").click
  SubmissionSummary.new(@browser)
end