ciaranmcnulty/behat-stepthroughextension
Extension for behat to help debug failing scenarios
Maintainers
Package info
github.com/ciaranmcnulty/behat-stepthroughextension
pkg:composer/ciaranmcnulty/behat-stepthroughextension
Requires
- behat/behat: ~3.0
Requires (Dev)
- phpspec/phpspec: dev-master
- symfony/filesystem: ~2.3
- symfony/process: ~2.3
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 4c0df28e016c567c417cbccd49e480c0649f531e
- Ciaran McNulty <mail.woop@ciaranmcnulty.com>
This package is auto-updated.
Last update: 2026-06-24 07:24:24 UTC
README
Behat-StepThroughExtension helps you debug Behat scenarios by stopping execution in between steps.
This allows you to do things like observe DB state, look at the pages open in your browser automation suite, examine files created on disks etc., while still being able to resume scenario execution and let any post-scenario cleanup hooks run.
Usage
When debugging a particular scenario, use the --step-through flag at the cli:
bin/behat --step-through features/my-failing-feature
After each step you will see the message [Paused after "<step text>" - press enter to continue]. The Behat test suite will stay in this suspended state until a carriage return is received, to allow you to do any inspections necessary.
Note: Execution will also pause after each step of a Background, but depending on the formatter in use there may not be any other indication that a Background step has been run.
Installation
Install by adding to your composer.json:
{
"require-dev": {
"ciaranmcnulty/behat-stepthroughextension" : "dev-master"
}
}
Configuration
There are no configuration parameters, just enable the extension in behat.yml
default: extensions: Cjm\Behat\StepThroughExtension: ~
