diff options
Diffstat (limited to 'tests/FunctionalTests/selenium')
-rw-r--r-- | tests/FunctionalTests/selenium/php/selenium.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/FunctionalTests/selenium/php/selenium.php b/tests/FunctionalTests/selenium/php/selenium.php index 5c24e57d..80100ac9 100644 --- a/tests/FunctionalTests/selenium/php/selenium.php +++ b/tests/FunctionalTests/selenium/php/selenium.php @@ -116,7 +116,8 @@ class SeleneseInterpreter if($ID instanceof TControl) $ID = $ID->ClientID; $value = isset($args[1]) ? $args[1] : ""; - $command = "|{$func}|{$ID}|{$value}|"; + //$command = "|{$func}|{$ID}|{$value}|"; + $command = array($func, $ID, $value); $trace = debug_backtrace(); return $this->addCommand($command, $trace); } @@ -340,7 +341,8 @@ EOD; echo $this->renderHeader(); foreach($this->tests as $test) { - $t = explode('|', $test['test']); + $t = $test; + //$t = explode('|', $test['test']); if($t[1] == "open") $t[2] = "<a href=\"{$t[2]}\" target=\"_blank\">{$t[2]}</a>"; echo "<tr>\n"; |