Change a little the way browser are tested :
* Use latest version of Firefox * Add IE8 * Replace IE10 by IE11 * Add Safari 7 on Mac * Add Android browser
This commit is contained in:
parent
57f93b6537
commit
c584b7355e
|
@ -9,8 +9,16 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
|
||||||
array(
|
array(
|
||||||
'browserName' => 'firefox',
|
'browserName' => 'firefox',
|
||||||
'desiredCapabilities' => array(
|
'desiredCapabilities' => array(
|
||||||
'version' => '15',
|
'version' => '25',
|
||||||
'platform' => 'Windows 2012',
|
'platform' => 'Windows 8.1',
|
||||||
|
)
|
||||||
|
),
|
||||||
|
// run IE8 on Windows 7 on Sauce
|
||||||
|
array(
|
||||||
|
'browserName' => 'internet explorer',
|
||||||
|
'desiredCapabilities' => array(
|
||||||
|
'version' => '8',
|
||||||
|
'platform' => 'Windows 7',
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
// run IE9 on Windows 7 on Sauce
|
// run IE9 on Windows 7 on Sauce
|
||||||
|
@ -25,8 +33,8 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
|
||||||
array(
|
array(
|
||||||
'browserName' => 'internet explorer',
|
'browserName' => 'internet explorer',
|
||||||
'desiredCapabilities' => array(
|
'desiredCapabilities' => array(
|
||||||
'version' => '10',
|
'version' => '11',
|
||||||
'platform' => 'Windows 8',
|
'platform' => 'Windows 8.1',
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
// run Opera 12 on Windows 7 on Sauce
|
// run Opera 12 on Windows 7 on Sauce
|
||||||
|
@ -37,6 +45,14 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
|
||||||
'platform' => 'Windows 7',
|
'platform' => 'Windows 7',
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
|
// run Safari 7 on Maverick on Sauce
|
||||||
|
array(
|
||||||
|
'browserName' => 'safari',
|
||||||
|
'desiredCapabilities' => array(
|
||||||
|
'version' => '7',
|
||||||
|
'platform' => 'OS X 10.9',
|
||||||
|
)
|
||||||
|
),
|
||||||
// run Mobile Safari on iOS
|
// run Mobile Safari on iOS
|
||||||
array(
|
array(
|
||||||
'browserName' => '',
|
'browserName' => '',
|
||||||
|
@ -47,6 +63,14 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
|
||||||
'platform' => 'Mac 10.8',
|
'platform' => 'Mac 10.8',
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
|
// run Mobile Browser on Android
|
||||||
|
array(
|
||||||
|
'browserName' => 'Android',
|
||||||
|
'desiredCapabilities' => array(
|
||||||
|
'version' => '4.0',
|
||||||
|
'platform' => 'Linux',
|
||||||
|
)
|
||||||
|
),
|
||||||
// run Chrome on Linux on Sauce
|
// run Chrome on Linux on Sauce
|
||||||
array(
|
array(
|
||||||
'browserName' => 'chrome',
|
'browserName' => 'chrome',
|
||||||
|
@ -55,14 +79,7 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
|
||||||
'platform' => 'Linux'
|
'platform' => 'Linux'
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
// run Mobile Browser on Android
|
|
||||||
// array(
|
|
||||||
// 'browserName' => 'Android',
|
|
||||||
// 'desiredCapabilities' => array(
|
|
||||||
// 'version' => '4.0',
|
|
||||||
// 'platform' => 'Linux',
|
|
||||||
// )
|
|
||||||
// )
|
|
||||||
|
|
||||||
// run Chrome locally
|
// run Chrome locally
|
||||||
//array(
|
//array(
|
||||||
|
|
Loading…
Reference in a new issue