Skip to content

Instantly share code, notes, and snippets.

@danpoltawski
Created May 14, 2013 21:22
Show Gist options
  • Select an option

  • Save danpoltawski/5579657 to your computer and use it in GitHub Desktop.

Select an option

Save danpoltawski/5579657 to your computer and use it in GitHub Desktop.
mink extension behat
$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