-
Open a browser
# start an instance of firefox with selenium-webdriver $browser_type = 'firefox' $host = 'http://localhost:4444/wd/hub'
$capabilities = array(\WebDriverCapabilityType::BROWSER_NAME => $browser_type);
| <?php | |
| function rekey_multi_array($array) { | |
| $new = array(); | |
| $count = 0; | |
| if (is_array($array)) { | |
| foreach ($array as $key => $val) { | |
| if (!is_numeric($key)) { | |
| $new[$key] = $this -> rekey_multi_array($val); | |
| } else { | |
| $new[$count] = $this -> rekey_multi_array($val); |