Yes it is possible.
I had the same problem using Selenium Grid in version 1.x. Download the Selenium Driver (Selenium 2). I got tests running on Debian without changing runtests.sh.
If you plan to test several OS / browsers, you can find a quick start for Selenium Grid 2 . This can be useful if you host your Magento code on a linux web server. Fortunately, itβs now much easier to set up the grid than it was with Selenium 1.
Start the server using
java -jar selenium-server-standalone-2.15.0.jar -role hub
By default, the server will run on port 4444. You can start the server in a Linux box without a desktop environment (for example, a development web server).
Then you install the boxes with the desktop environment (for example, a Windows machine and a Linux machine). Now you download a separate server library for each machine and start the client:
java -jar selenium-server-standalone-2.15.0.jar -role node -hub http://192.168.1.2:4444/grid/register
You must change the IP to the IP address of your Selenium server (and change the port if you did this in the first command). By default, the client will run on port 5555. If you want to use a different port for the client or want to run multiple client instances, you can define user ports using the -port switch.
Note : don't care too much about the software versions mentioned in the document. It seems to be a bit outdated.
Matthias zeis
source share