Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Yes, it is possible.</p> <p>I had the same problem using Selenium Grid in version 1.x. Download <a href="http://seleniumhq.org/download/" rel="noreferrer">Selenium Driver</a> (Selenium 2). I got the tests running in Debian without modifying runtests.sh.</p> <p>If you plan to test with several OS / browsers you can find a <a href="http://code.google.com/p/selenium/wiki/Grid2" rel="noreferrer">quick start tutorial for Selenium Grid 2</a>. This may be helpful if you host your Magento code on a linux webserver. It's much easier now to set up the grid than it was with Selenium 1, fortunately.</p> <p>Launch the server with</p> <pre><code>java -jar selenium-server-standalone-2.15.0.jar -role hub </code></pre> <p>By default, the server will run on port 4444. You can start the server on a Linux box without a desktop environment (e.g. a development web server).</p> <p>Then you set up boxes with desktop environment (e.g. a Windows machine and a Linux machine). Now you download the server standalone library for every machine and start the client:</p> <pre><code>java -jar selenium-server-standalone-2.15.0.jar -role node -hub http://192.168.1.2:4444/grid/register </code></pre> <p>You have to change the IP to the IP of your Selenium server (and change the port if you did so in the first command). By default, the client will run on port 5555. If you want to use another port for the client or if you wish to start several client instances, you can define custom ports using the -port switch.</p> <p><strong>Note</strong>: don't care too much about the software versions mentioned in the document at all. It seems to be a bit outdated.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload