up vote 1 down vote favorite
share [g+] share [fb]

I have bunch of phpunit tests, part of them using selenium, and i need to know wheteher selenium server is running or not (windows). Is there way to check it from php?

link|improve this question

74% accept rate
cant you just do a request? – Grumpy Sep 7 '10 at 11:28
feedback

1 Answer

up vote 2 down vote accepted

By default Selenium server accepts commands on localhost port 4444

So you could do this:

<?php
$selenium_running = false;

$fp = @fsockopen('localhost', 4444);
if ($fp !== false) {
    $selenium_running = true;
    fclose($fp);
}

var_dump($selenium_running);

I dont personally like using @, but fsockopen insists on throwing a PHP notice, when the connection fails. Having this warning in output or even in log file is just annoying.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.