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/behat/features/adminFillUsers.feature

35 lines
1.1 KiB

# features/login.feature
@common
Feature: User login
In order to log in
As any registered user
I need to be able to enter my details in the form and get in
Scenario: Login as admin user successfully
Given I am a platform administrator
Then I should not see an ".alert-danger" element
Scenario: Create tests users successfully
Given I am a platform administrator
And I am on "/main/admin/filler.php?fill=users"
Then I should not see an ".alert-danger" element
Scenario: Login as student user successfully
Given I am a student
Then I should not see an ".alert-danger" element
Scenario: Login as teacher successfully
Given I am a teacher
Then I should not see an ".alert-danger" element
Scenario: Login as HRD successfully
Given I am an HR manager
Then I should not see an ".alert-danger" element
Scenario: Login as student boss successfully
Given I am a student boss
Then I should not see an ".alert-danger" element
Scenario: Login as invitee successfully
Given I am an invitee
Then I should not see an ".alert-danger" element