Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Selenium RC to automate some browser operations but I want the browser to be invisible. Is this possible? How? What about Selenium Grid? Can I hide the Selenium RC window also?

share|improve this question

7 Answers

up vote 36 down vote accepted

There are a few options:

  • You could use Selenium Grid so that the browser is opened on a completely different machine (or virtual machine) that you can then connect to via VNC or Remote Desktop Connection if you wanted to see the browser.

  • You can run Selenium 'headless' on Linux. I've never tried doing this and doubt it's really worth the effort. http://www.alittlemadness.com/2008/03/05/running-selenium-headless/

  • You can wrap Selenium RC in a Windows service. http://support.microsoft.com/kb/137890

  • Another option would be to use something like WebDriver and use the HTMLUnitDriver, which doesn't launch a 'real' browser. http://code.google.com/p/webdriver/

  • Of course there's also the option of using a service like SauceLabs, where you can get your tests to be run in the cloud. After your tests have completed you can watch a video of them running.

share|improve this answer
Here are instructions on creating a bat file to install the service: brantleytec.blogspot.com/2012/11/… – Brantley Blanchard Apr 14 at 8:11

On *nix, you can run WebDriver in a headless (virtual) display to hide the browser. This can be done with Xvfb.

I personally use Python on Linux, and the PyVirtualDisplay module to handle Xvfb for me.

Code for running headless would look like this:

#!/usr/bin/env python

from pyvirtualdisplay import Display
from selenium import webdriver

display = Display(visible=0, size=(800, 600))
display.start()

# now Firefox will run in a virtual display. 
# you will not see the browser.
browser = webdriver.Firefox()
browser.get('http://www.google.com')
print browser.title
browser.quit()

display.stop()

Install dependencies on Debian/Ubuntu:

$ sudo apt-get install xvfb python-pip
$ sudo pip install pyvirtualdisplay
share|improve this answer

+1 for Selenium RC as a windows service.

For having the tests run completely hidden, I think you don't have much solutions if you're on windows.

What I'd do it to dedicate a computer in your LAN to be online all the time and have a selenium RC server running. So you use that computer's IP instead of localhost to run your tests. For example:

browser = selenium("10.15.12.34",4444,"*firefox","http://saucelabs.com")

(considering that that's the ip of the computer running the server).

Having that setup, you run your tests in you computer, the browsers and the RC server window are in another computer and the go back to yours once done.

share|improve this answer

If you're on Windows, one option is to run the tests under a different user account. This means the browser and java server will not be visible to your own account.

share|improve this answer

This is how I run my tests with maven on a linux desktop (Ubuntu). I got fed up not being able to work with the firefox webdriver always taking focus.

I installed xvfb

xvfb-run -a mvn clean install

Thats it

share|improve this answer

Does anybody have a solution for OS X?

It's certainly possible to have an application be hidden on launch (if you go to Login Items in System Preferences, applications launched from there can be hidden) so it must be possible for Selenium to do it — even if it's a private API, it's not like Selenium's on the App Store :)

share|improve this answer

On Linux, you can run your test browser on a virtual display. You will need the xvfb package for creating a virtual X server. On Debian based distros, just run

sudo apt-get install xvfb

There is a nice tool ephemeral-x.sh that will conveniently set up any command to run on the virtual display. Download it and make it executable:

wget https://github.com/jordansissel/xdotool/blob/master/t/ephemeral-x.sh
chmod +x ephemeral-x.sh

Then you can simply use it to start the Selenium server:

./ephemeral-x.sh java -jar selenium-standalone.jar

All browser windows created by Selenium will now use the virtual display and will be invisible to you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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