Skip to content

Instantly share code, notes, and snippets.

Feature: Login # features/authentication/login.feature
To ensure the safety of the application
A regular user of the system
Must authenticate before using the app
Scenario Outline: Failed Login # features/authentication/login.feature:6
Given I am not authenticated # features/authentication/login.feature:7
When I go to /login # features/authentication/login.feature:8
And I fill in "Login" with "<login>" # features/authentication/login.feature:9
And I fill in "Password" with "<password>" # features/authentication/login.feature:10
And I press "Log In" # features/authentication/login.feature:11