Module: AssignmentsReorderMethods
- Includes:
- PageObject
- Defined in:
- lib/kuali-sakai-common-lib/assignments.rb
Overview
The reorder page for Assignments
Instance Method Summary collapse
-
#cancel ⇒ Object
Clicks the Cancel button, then instantiates the AssignmentsList Class.
-
#save ⇒ Object
Clicks the Save button, then instantiates the AssignmentsList page class.
Instance Method Details
#cancel ⇒ Object
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.(:value=>"Cancel").click AssignmentsList.new(@browser) end |
#save ⇒ Object
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.(:value=>"Save").click AssignmentsList.new(@browser) end |