作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在兜圈子,所以我将从我开始的地方开始:
我正在运行以下内容:
composer.json
:
{
"require": {
"behat/behat": "2.5.*@stable",
"behat/symfony2-extension": "@stable",
"behat/mink": "@stable",
"behat/mink-extension": "@stable",
"behat/mink-browserkit-driver": "@stable",
"behat/mink-goutte-driver": "1.*@stable",
"behat/mink-selenium2-driver": "@stable",
"phpunit/php-code-coverage": "@stable",
"phpunit/phpunit-mock-objects": "@stable",
"phpunit/phpunit": "@stable",
},
"config": {
"bin-dir": "bin/"
}
}
behat.yml
:
default:
extensions:
Behat\MinkExtension\Extension:
goutte: ~
selenium2: ~
这给了我这个错误:
[RuntimeException]
MinkExtension 1.3 only supports Goutte 1.x for MinkGoutteDriver, not Goutte 2.x.
我需要使用 behat 2.5.* 但除此之外,我不在乎。我怎样才能让它工作?
谢谢
最佳答案
呃..很明显。
将此添加到 composer.json
中的要求:
"fabpot/goutte": "1.*@stable",
(我以为 composer 会意识到它需要 goutte 1.* 但显然不是)
关于Behat error : MinkExtension 1. 3 只支持MinkGoutteDriver的Goutte 1.x,不支持Goutte 2.x,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31819813/
我是一名优秀的程序员,十分优秀!