Class Browser
Defines all browser / os combinations that are supported for testing purposes.
public static
array
|
string |
CHROME
|
#
"chrome"
|
string |
FIREFOX
|
#
"firefox"
|
string |
INTERNET_EXPLORER
|
#
"internet explorer"
|
string |
SAFARI
|
#
"safari"
|
string |
OSX_SNOW_LEOPARD
|
#
"OS X 10.6"
|
string |
OSX_MOUNTAIN_LION
|
#
"OS X 10.8"
|
string |
OSX_MAVERICKS
|
#
"OS X 10.9"
|
string |
OSX_YOSEMITE
|
#
"OS X 10.10"
|
string |
WINDOWS_XP
|
#
"Windowx XP"
|
string |
WINDOWS_7
|
#
"Windows 7"
|
string |
WINDOWS_8
|
#
"Windows 8"
|
string |
WINDOWS_8_1
|
#
"Windows 8.1"
|
protected static
array
|
$supported
|
#
array(
'chrome' => array(
'Windows XP' => array("38", "39"),
'Windows 7' => array("38", "39"),
'Windows 8' => array("38", "39"),
'Windows 8.1' => array("38", "39")
),
'firefox' => array (
'Windows XP' => array("32", "33"),
'Windows 7' => array("32", "33"),
'Windows 8' => array("32", "33"),
'Windows 8.1' => array("32", "33")
),
'internet explorer' => array(
'Windows XP' => array("6", "7", "8"),
'Windows 7' => array("8", "9", "10", "11"),
'Windows 8' => array("10"),
'Windows 8.1' => array("11")
)
)
|