Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
@tool @javascript @tool_lp @tool_lp_planFeature: Manage plearning planAs a learning plan adminIn order to perform CRUD operations on learning planI need to create, update and delete learning planBackground:Given I log in as "admin"And I am on site homepageWhen I follow "Profile" in the user menuThen I should see "Learning plans"Scenario: Create a new learning planGiven I follow "Learning plans"And I should see "List of learning plan"And I click on "Add new learning plan" "button"And I should see "Add new learning plan"And I set the field "Name" to "Science plan"And I set the field "Description" to "Here description of learning plan"When I press "Save changes"Then I should see "Learning plan created"And I should see "Science plan"Scenario: Create a learning plan based on templateGiven the following lp "templates" exist:| shortname | description || Science template | science template description |And I am on homepageAnd I navigate to "Competencies > Learning plan templates" in site administrationAnd I click on ".template-userplans" "css_element" in the "Science template" "table_row"And I open the autocomplete suggestions listAnd I click on "Admin User" item in the autocomplete listAnd I press the escape keyWhen I click on "Create learning plans" "button"Then I should see "A learning plan was created"And I should see "Admin User" in the "Science template" "table_row"Scenario: Create a learning plan from template cohortGiven the following lp "templates" exist:| shortname | description || Science template cohort | science template description |And the following "users" exist:| username | firstname | lastname | email || student-plan1 | Student | 1 | studentplan1@example.com || student-plan2 | Student | 2 | studentplan2@example.com |And the following "cohorts" exist:| name | idnumber || cohort plan | COHORTPLAN |And the following "cohort members" exist:| user | cohort || student-plan1 | COHORTPLAN || student-plan2 | COHORTPLAN |And I am on homepageAnd I navigate to "Competencies > Learning plan templates" in site administrationAnd I click on ".template-cohorts" "css_element" in the "Science template cohort" "table_row"And I set the field "Select cohorts to sync" to "cohort plan"When I click on "Add cohorts" "button"Then I should see "2 learning plans were created."And I navigate to "Competencies > Learning plan templates" in site administrationAnd I click on ".template-userplans" "css_element" in the "Science template cohort" "table_row"And I should see "Student 1"And I should see "Student 2"Scenario: Read a learning planGiven the following lp "plans" exist:| name | user | description || Science plan Year-1 | admin | science plan description |And I follow "Learning plans"And I should see "Science plan Year-1"When I click on "Science plan Year-1" "link"Then I should see "Science plan Year-1"And I should see "Learning plan competencies"Scenario: Manage a learning plan competenciesGiven the following lp "plans" exist:| name | user | description || Science plan Year-manage | admin | science plan description |And the following lp "frameworks" exist:| shortname | idnumber || Framework 1 | sc-y-2 |And the following lp "competencies" exist:| shortname | framework || comp1 | sc-y-2 || comp2 | sc-y-2 |And I follow "Learning plans"And I should see "Science plan Year-manage"And I follow "Science plan Year-manage"And I should see "Add competency"And I press "Add competency"And "Competency picker" "dialogue" should be visibleAnd I select "comp1" of the competency treeWhen I click on "Add" "button" in the "Competency picker" "dialogue"Then "comp1" "table_row" should existAnd I click on "Delete" of edit menu in the "comp1" rowAnd "Confirm" "dialogue" should be visibleAnd I click on "Confirm" "button"And I wait until the page is readyAnd "comp1" "table_row" should not existScenario: Edit a learning planGiven the following lp "plans" exist:| name | user | description || Science plan Year-2 | admin | science plan description || Science plan Year-3 | admin | science plan description |And I follow "Learning plans"And I should see "Science plan Year-2"And I should see "Science plan Year-3"And I click on "Edit" of edit menu in the "Science plan Year-3" rowAnd the field "Name" matches value "Science plan Year-3"And I set the field "Name" to "Science plan Year-3 Edited"When I press "Save changes"Then I should see "Learning plan updated"And I should see "Science plan Year-3 Edited"Scenario: Delete a learning planGiven the following lp "plans" exist:| name | user | description || Science plan Year-4 | admin | science plan description |And I follow "Learning plans"And I should see "Science plan Year-4"And I click on "Delete" of edit menu in the "Science plan Year-4" rowAnd "Confirm" "dialogue" should be visibleAnd "Delete" "button" should exist in the "Confirm" "dialogue"And "Cancel" "button" should exist in the "Confirm" "dialogue"And I click on "Cancel" "button" in the "Confirm" "dialogue"And I click on "Delete" of edit menu in the "Science plan Year-4" rowAnd "Confirm" "dialogue" should be visibleWhen I click on "Delete" "button" in the "Confirm" "dialogue"And I wait until the page is readyThen I should not see "Science plan Year-4"Scenario: See a learning plan from a courseGiven the following lp "plans" exist:| name | user | description || Science plan Year-manage | admin | science plan description |And the following lp "frameworks" exist:| shortname | idnumber || Framework 1 | sc-y-2 |And the following lp "competencies" exist:| shortname | framework || comp1 | sc-y-2 || comp2 | sc-y-2 |And I follow "Learning plans"And I should see "Science plan Year-manage"And I follow "Science plan Year-manage"And I should see "Add competency"And I press "Add competency"And "Competency picker" "dialogue" should be visibleAnd I select "comp1" of the competency treeWhen I click on "Add" "button" in the "Competency picker" "dialogue"Then "comp1" "table_row" should existAnd I create a course with:| Course full name | New course fullname || Course short name | New course shortname |And I navigate to "Competencies" in current page administrationAnd I press "Add competencies to course"And "Competency picker" "dialogue" should be visibleAnd I select "comp1" of the competency treeAnd I click on "Add" "button" in the "Competency picker" "dialogue"And I should see "Learning plans"And I should see "Science plan Year-manage"