summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/selenium/php/selenium.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/selenium/php/selenium.php')
-rw-r--r--tests/FunctionalTests/selenium/php/selenium.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/FunctionalTests/selenium/php/selenium.php b/tests/FunctionalTests/selenium/php/selenium.php
index 4a4c6e19..960791b8 100644
--- a/tests/FunctionalTests/selenium/php/selenium.php
+++ b/tests/FunctionalTests/selenium/php/selenium.php
@@ -112,15 +112,17 @@ class SeleneseInterpreter
public function __call($func, $args)
{
if($func{0} == '_') return;
+
$ID = isset($args[0]) ? $args[0] : "";
- //if($ID instanceof TControl)
- // $ID = $ID->ClientID;
$value = isset($args[1]) ? $args[1] : "";
if(strpos(strtolower($func),'htmlpresent') || strpos(strtolower($func),'htmlnotpresent'))
$ID = htmlspecialchars($ID);
- //$command = "|{$func}|{$ID}|{$value}|";
$command = array($func, $ID, $value);
$trace = debug_backtrace();
+
+ if(is_int(strpos(strtolower($func), 'visible')))
+ $this->addCommand(array('pause','500',''),$trace);
+
return $this->addCommand($command, $trace);
}