Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chamilo-lms/tests/features/createUser.feature

24 lines
800 B

@administration
Feature: Users management as admin
In order to add users
As an administrator
I need to be able to create new users
Scenario: Create a user with only basic info
Given I am a platform administrator
And I am on "/main/admin/user_add.php"
When I fill in "firstname" with "Sammy"
And I fill in "lastname" with "Marshall"
And I fill in "username" with "smarshall"
And I fill in "email" with "smarshall@example.com"
And I press "submit"
Then I should see "The user has been added"
Scenario: Search and delete a user
Given I am a platform administrator
And I am on "/main/admin/user_list.php"
And I fill in "keyword" with "smarshall"
And I press "submit"
When I follow "Delete"
Then I should see "The user has been deleted"