Doc added for Running selenium tests in VM

- Adding documentation and list of steps for running a selenium test
  on minimal installation VM via ssh.

Fixes: bug 1184541
Change-Id: I3eda98668212bb6764fd6c6e8a6399748859921e
This commit is contained in:
Ladislav Smola 2013-05-27 14:02:56 +02:00
parent 7a7b4217f7
commit a3ccfff38b
1 changed files with 12 additions and 0 deletions

View File

@ -40,6 +40,18 @@ Selenium tests by using the ``--with-selenium`` flag::
./run_tests.sh --with-selenium
If you run horizon in a minimal installation VM, you will probably need
the following (steps for Fedora 18 minimal installation):
#. Install these packages in the VM:
``yum install xorg-x11-xauth xorg-x11-fonts-Type1.noarch``.
#. Install firefox in the VM:
``yum install firefox``.
#. Connect to the VM by ``ssh -X``
(if you run ``set|grep DISP``, you should see that the DISPLAY is set).
#. Run
``./run_tests.sh --with-selenium``.
Running a subset of tests
-------------------------