behat-skill
Installation
SKILL.md
Behat BDD Skill
Core Patterns
Feature File (features/login.feature)
Feature: User Login
As a user I want to log in
Scenario: Successful login
Given I am on "/login"
When I fill in "email" with "user@test.com"
And I fill in "password" with "password123"
And I press "Login"
Then I should see "Dashboard"
And I should be on "/dashboard"