Module: AssignmentsReorderMethods

Includes:
PageObject
Defined in:
lib/kuali-sakai-common-lib/assignments.rb

Overview

The reorder page for Assignments

Instance Method Summary collapse

Instance Method Details

#cancelObject

Clicks the Cancel button, then instantiates the AssignmentsList Class.



453
454
455
456
# File 'lib/kuali-sakai-common-lib/assignments.rb', line 453

def cancel
  frm.button(:value=>"Cancel").click
  AssignmentsList.new(@browser)
end

#saveObject

Clicks the Save button, then instantiates the AssignmentsList page class.



446
447
448
449
# File 'lib/kuali-sakai-common-lib/assignments.rb', line 446

def save
  frm.button(:value=>"Save").click
  AssignmentsList.new(@browser)
end