Fixed the configuration for Selenium2 capabilities
Some capabilities need to have a dash in their name to match the name expected by Selenium2 (which uses a mix of camel cased and dashed names). This fix makes the MinkExtension incompatible with Symfony 2.0 and 2.1 but they already reached their end of maintenance anyway. Closes #91
This commit is contained in:
@@ -15,7 +15,8 @@
|
||||
"require": {
|
||||
"php": ">=5.3.2",
|
||||
"behat/behat": "~2.5.0",
|
||||
"behat/mink": ">=1.4.3,<1.6-dev"
|
||||
"behat/mink": ">=1.4.3,<1.6-dev",
|
||||
"symfony/config": "~2.2"
|
||||
},
|
||||
|
||||
"require-dev": {
|
||||
@@ -24,11 +25,5 @@
|
||||
|
||||
"autoload": {
|
||||
"psr-0": { "Behat\\MinkExtension": "src/" }
|
||||
},
|
||||
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.1.x-dev"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user