[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 @core @core_auth 2 Feature: Authentication 3 In order to validate my credentials in the system 4 As a user 5 I need to log into the system 6 7 Scenario: Log in with the predefined admin user with Javascript disabled 8 Given I log in as "admin" 9 Then I should see "You are logged in as Admin User" in the "page-footer" "region" 10 11 @javascript 12 Scenario: Log in with the predefined admin user with Javascript enabled 13 Given I log in as "admin" 14 Then I should see "You are logged in as Admin User" in the "page-footer" "region" 15 16 Scenario: Log in as an existing admin user filling the form 17 Given the following "users" exist: 18 | username | password | firstname | lastname | email | 19 | testuser | testuser | Test | User | moodle@example.com | 20 And I am on site homepage 21 When I follow "Log in" 22 And I set the field "Username" to "testuser" 23 And I set the field "Password" to "testuser" 24 And I press "Log in" 25 Then I should see "You are logged in as" in the "page-footer" "region" 26 27 Scenario: Log in as an unexisting user filling the form 28 Given the following "users" exist: 29 | username | password | firstname | lastname | email | 30 | testuser | testuser | Test | User | moodle@example.com | 31 And I am on site homepage 32 When I follow "Log in" 33 And I set the field "Username" to "testuser" 34 And I set the field "Password" to "unexisting" 35 And I press "Log in" 36 Then I should see "Invalid login, please try again" 37 38 Scenario: Log out 39 Given I log in as "admin" 40 When I log out 41 Then I should see "You are not logged in" in the "page-footer" "region"
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Aug 11 10:00:09 2016 | Cross-referenced by PHPXref 0.7.1 |