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?
|
There are a few options:
|
||||
|
|
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:
Install dependencies on Debian/Ubuntu:
|
|||
|
|
|
+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:
(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. |
|||
|
|
|
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. |
|||
|
|
|
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
Thats it |
|||
|
|
|
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 :) |
|||
|
|
|
On Linux, you can run your test browser on a virtual display. You will need the
There is a nice tool
Then you can simply use it to start the Selenium server:
All browser windows created by Selenium will now use the virtual display and will be invisible to you. |
|||
|
|