Created
May 14, 2013 21:22
-
-
Save danpoltawski/5579657 to your computer and use it in GitHub Desktop.
mink extension behat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $CFG->behat_config = array( | |
| 'Mac-Firefox' => array( | |
| 'extensions' => array( | |
| 'Behat\MinkExtension\Extension' => array( | |
| 'selenium2' => array( | |
| 'browser' => 'firefox', | |
| 'capabilities' => array( | |
| 'platform' => 'Mac 10.6', | |
| 'version' => 8, | |
| ) | |
| ) | |
| ) | |
| ) | |
| ), | |
| 'Mac-Safari' => array( | |
| 'extensions' => array( | |
| 'Behat\MinkExtension\Extension' => array( | |
| 'selenium2' => array( | |
| 'browser' => 'safari', | |
| 'capabilities' => array( | |
| 'platform' => 'Mac 10.6', | |
| 'version' => 5, | |
| ) | |
| ) | |
| ) | |
| ) | |
| ), | |
| 'Linux-Firefox' => array( | |
| 'extensions' => array( | |
| 'Behat\MinkExtension\Extension' => array( | |
| 'selenium2' => array( | |
| 'browser' => 'firefox', | |
| 'capabilities' => array( | |
| 'platform' => 'Linux', | |
| 'version' => 18, | |
| ) | |
| ) | |
| ) | |
| ) | |
| ), | |
| 'Windows-Firefox' => array( | |
| 'extensions' => array( | |
| 'Behat\MinkExtension\Extension' => array( | |
| 'selenium2' => array( | |
| 'browser' => 'firefox', | |
| 'capabilities' => array( | |
| 'platform' => 'Windows 2012', | |
| 'version' => 18, | |
| ) | |
| ) | |
| ) | |
| ) | |
| ), | |
| 'Windows-IE7' => array( | |
| 'extensions' => array( | |
| 'Behat\MinkExtension\Extension' => array( | |
| 'selenium2' => array( | |
| 'browser' => 'internet explorer', | |
| 'capabilities' => array( | |
| 'platform' => 'Windows 2003', | |
| 'version' => 7, | |
| ) | |
| ) | |
| ) | |
| ) | |
| ), | |
| 'Windows-IE9' => array( | |
| 'extensions' => array( | |
| 'Behat\MinkExtension\Extension' => array( | |
| 'selenium2' => array( | |
| 'browser' => 'internet explorer', | |
| 'capabilities' => array( | |
| 'platform' => 'Windows 2008', | |
| 'version' => 9, | |
| ) | |
| ) | |
| ) | |
| ) | |
| ) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment