MDL-86895 core_grades: Behat to verify listing and grading submissions

This commit is contained in:
Mio Yu
2025-11-11 09:55:58 +08:00
committed by mioyu-ubiq
parent 9fd9388e2a
commit bcf8806a82
@@ -0,0 +1,44 @@
@gradingform @gradingform_guide
Feature: Verify listings and grading submissions
In order to verify grade listing
As a teacher
I need to be able to see grades in the correct column
Background:
Given the following "users" exist:
| username | firstname | lastname | email |
| student | Student | One | one@example.com |
| teacher | Teacher | One | t1@example.com |
And the following "courses" exist:
| shortname | fullname |
| C1 | Course 1 |
And the following "course enrolments" exist:
| user | course | role |
| student | C1 | student |
| teacher | C1 | editingteacher |
And the following "activities" exist:
| activity | name | course | advancedgradingmethod_submissions | assignsubmission_onlinetext_enabled |
| assign | Assign1 | C1 | guide | 1 |
And I am on the "Course 1" course page logged in as teacher
And I go to "Assign1" advanced grading definition page
And I set the following fields to these values:
| Name | Assign1 marking guide |
| Description | Marking guide description |
And I define the following marking guide:
| Criterion name | Description for students | Description for markers | Maximum score |
| Criteria 1 | Grade 1 description for students | Grade 1 description for markers | 100 |
And I press "Save marking guide and make it ready"
And the following "mod_assign > submissions" exist:
| assign | user | onlinetext |
| Assign1 | student | This is a submission for assignment |
@javascript
Scenario: Mark and view all grades in submissions table
Given I am on the "Assign1" "assign activity" page
And I navigate to "Submissions" in current page administration
And I click on "Grade" "link" in the ".tertiary-navigation" "css_element"
And I grade by filling the marking guide with:
| Criteria 1 | 50 | Excellent work! |
And I press "Save changes"
When I follow "View all submissions"
Then "Student One" row "Grade" column of "submissions" table should contain "50.00"