Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check whether Selenium Server is running

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?

like image 699
ts. Avatar asked Sep 07 '10 10:09

ts.


1 Answers

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.

like image 174
Anti Veeranna Avatar answered Sep 20 '22 11:09

Anti Veeranna