soyuka / contexts
Behatch contexts
v3.3.13
2024-08-08 13:39 UTC
Requires
- php: >=8.0
- behat/behat: ^3.0.13
- friends-of-behat/mink-extension: ^2.3.1
- justinrainbow/json-schema: ^5.0|^6.0
- symfony/dom-crawler: ^2.4|^3.0|^4.0|^5.0|^6.0|^7.0
- symfony/http-foundation: ^2.3|^3.0|^4.0|^5.0|^6.0|^7.0
- symfony/property-access: ^2.3|^3.0|^4.0|^5.0|^6.0|^7.0
Requires (Dev)
- atoum/atoum: ^4.0
- atoum/stubs: ^2.6
- behat/mink-goutte-driver: ^1.1
- behat/mink-selenium2-driver: ^1.6
- fabpot/goutte: ^3.2
- guzzlehttp/guzzle: ^6.3
- phpunit/phpunit: ^9.5
Replaces
- sanpi/behatch-contexts: v3.3.13
- dev-main
- v3.3.13
- v3.3.12
- v3.3.11
- v3.3.10
- v3.3.9
- v3.3.8
- v3.3.7
- v3.3.6
- v3.3.5
- v3.3.4
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.1
- 3.1.0
- 3.0.1
- 3.0.0
- 2.x-dev
- 2.8.1
- 2.8.0
- 2.7.1
- 2.7
- 2.6.1
- 2.6
- 2.5
- 2.4
- 2.3
- 2.2
- 2.1
- 2.0
- 1.5
- 1.4
- 1.3
- 1.2
- 1.1
- 1.0
- dev-add-gh-actions
- dev-fix-json-not-null
- dev-rest-dot-parameters
- dev-phpstan
- dev-selenium
- dev-behat-2.x
This package is auto-updated.
Last update: 2024-09-08 13:49:19 UTC
README
Behatch contexts 提供了最常见的 Behat 测试。
安装
此扩展需要
- Behat 3+
- Mink
- Mink 扩展
项目依赖
- 安装 Composer
- 使用 Composer 需要此包
$ composer require --dev soyuka/contexts
- 通过在
behat.yml
中指定其类来激活扩展
# behat.yml default: # ... extensions: Behatch\Extension: ~
项目引导
- 使用 composer 下载 Behatch 模板
$ php composer.phar create-project behatch/skeleton
浏览器、json、表格和 rest 步骤需要 mink 配置,有关更多信息,请参阅Mink 扩展
使用方法
在 behat.yml
中,启用所需上下文
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
示例
此项目是自我测试的,您可以探索功能目录以查找一些示例。
配置
browser
- 更多与浏览器相关的步骤(如 mink)timeout
- 默认超时
debug
- 调试辅助步骤screenshotDir
- 存储截图的目录
system
- 与 shell 相关的步骤root
- 文件系统的根目录
json
- JSON 相关步骤evaluationMode
- JavaScript "foo.bar" 或 PHP "foo->bar"
table
- 与 HTML 表格的交互rest
- 发送 GET、POST 等请求并测试 HTTP 响应头xml
- XML 相关步骤
配置示例
例如,如果您想将默认目录更改为截图目录,可以这样操作
default: suites: default: contexts: - behatch:context:debug: screenshotDir: "var"