svetel / behatch-contexts
Revived abandoned "Behatch contexts".
Installs: 4 897
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 201
Open Issues: 0
Language:Gherkin
Requires
- php: >=8.1
- behat/behat: ^3.12
- friends-of-behat/mink-extension: ^2.7
- justinrainbow/json-schema: ^5.2
- symfony/dom-crawler: ^5.0|^6.0
- symfony/http-foundation: ^5.0|^6.0
- symfony/property-access: ^5.0|^6.0
Requires (Dev)
- behat/mink-goutte-driver: ^2.0
- behat/mink-selenium2-driver: ^1.6
- fabpot/goutte: ^4.0
- guzzlehttp/guzzle: ^7.5
Replaces
- behatch/contexts: 3.*
- sanpi/behatch-contexts: 4.0.2
This package is auto-updated.
Last update: 2025-03-16 11:34:17 UTC
README
Behatch contexts provide most common Behat tests.
This project forked from Behatch/contexts
- Added support php 8.1
- Fixed deprecations
- Fixed tests for all tags, except:
- @user
- @skip
- @javascript
Welcome to contribute
Installation
This extension requires:
- Behat 3+
- Mink
- Mink extension
Project dependency
- Install Composer
- Require the package with Composer:
$ composer require --dev svetel/behatch-contexts
- Activate extension by specifying its class in your
behat.yml
:
# behat.yml default: # ... extensions: Behatch\Extension: ~
Project bootstrapping
- Download the Behatch skeleton with composer:
$ php composer.phar create-project behatch/skeleton
Browser, json, table and rest step need a mink configuration, see Mink extension for more information.
Usage
In behat.yml
, enable desired contexts:
default: suites: default: contexts: - behatch:context:browser - behatch:context:debug - behatch:context:system - behatch:context:json - behatch:context:table - behatch:context:rest - behatch:context:xml
Examples
This project is self-tested, you can explore the features directory to find some examples.
Configuration
browser
- more browser related steps (like mink)timeout
- default timeout
debug
- helper steps for debuggingscreenshotDir
- the directory where store screenshots
system
- shell related stepsroot
- the root directory of the filesystem
json
- JSON related stepsevaluationMode
- javascript "foo.bar" or php "foo->bar"
table
- play with HTML the tablesrest
- send GET, POST, ... requests and test the HTTP headersxml
- XML related steps
Configuration Example
For example, if you want to change default directory to screenshots - you can do it this way:
default: suites: default: contexts: - behatch:context:debug: screenshotDir: "var"