Sha256: 128aae6e3b2cb15d60148ef9666c852f063621df83f4068ae3e6c6775be4e087
Contents?: true
Size: 863 Bytes
Versions: 276
Compression:
Stored size: 863 Bytes
Contents
Feature: Login To ensure the safety of the application A regular user of the system Must authenticate before using the app Scenario Outline: Failed Login Given the user "known_user" When I go to the main page Then I should see the login form When I fill in "login" with "<login>" And I fill in "password" with "<password>" And I press "Log In" Then the login request should fail And I should see the error message "Login or Password incorrect" Examples: | login | password | | | | | unknown_user | | | known_user | | | | wrong_password | | | known_userpass | | unknown_user | wrong_password | | unknown_user | known_userpass | | known_user | wrong_password |
Version data entries
276 entries across 274 versions & 26 rubygems