Xvfb is an X11 server that executes all the graphical operations in memory without showing any screen output. It acts exactly like any other X widow server but with the difference that no output is shown so Xvfb does not require the computer it is running on to a screen. It can be used for many ...
14
votes
2answers
548 views
How do I start and stop a Linux program using the subprocess module in Python?
I’m writing a web app that uses Selenium to screen-scrape another website. This screen-scraping only happens once a day, so I’d rather not leave Selenium and Xvfb running all the time.
I’m trying to ...
4
votes
2answers
99 views
Is there a way to run GUI application in a headless way in Mac?
I'm using following techniques to run GUI application in Linux and Windows:
Linux:
:~$ Xvfb :99 -ac &
:~$ DISPLAY=:99 ./app
This won't work for 100% in Mac OS X, even though Xvfb is installed ...
3
votes
0answers
555 views
Starting google-chrome via Selenium on headless debian system
I'm trying to start the google-chrome browser in disabled web security mode. The selenium log says:
15:36:33.526 INFO - Command request: getNewBrowserSession[*googlechrome, http://www.myurl.de, , ...
3
votes
1answer
214 views
flash player not working under xvfb
Flash player not working in firefox (centos 5.5 x64) that run with selenium under XVFB. I'm getting just black screen in place where flash should be visible.
Tried both 32 and 64 versions.
May you ...
2
votes
2answers
318 views
Xvfb + firefox: how to know firefox finishes rendering?
I'm trying to grab web thumbnails by using X server to run Firefox in headless (Xvfb) X11.
I am looking for a way to know when Firefox FINISHED rendering and then I can use image programs to grab ...
2
votes
1answer
246 views
Running Xvfb from Python
I am working on a server with no X servers and trying to run a script that uses spynner module, which requires an X server. For this purpose, I want to run Xvfb.
I can run the script by calling it ...
2
votes
1answer
133 views
Subprocess is not invoking my command(or is doing it wrong)
Overview:
I have an application that sometimes must make something with celery- and if it is simple task such as count something- everything is ok.
I' ve got one task which must convert existing ...
2
votes
2answers
800 views
Running Selenium::WebDriver::Firefox inside Xvfb from ruby as NON-root user
I'm trying to do some headless testing using a ruby script... essentially I'm executing Xvfb on display :1, and then firing up Watir::Browser.new(:firefox) using watir-webdriver.
This works great if ...
1
vote
2answers
133 views
xvfb run error in ubuntu 11.04
My task is crawling the google search results using headless webkit(PyQt4.QtWebkit) in python.
The module was crawling the results fine using PyQt4.I should have to execute this script in amazon ...
1
vote
0answers
244 views
Cutycapt, wkhtmltopdf, wkhtmltoimage, phantomjs not displaying characters properly
The only characters they are displaying are the English ones.
The layout of the printed page is as it should be, but the only thing that is wrong is the characters in any script other than english ...
1
vote
1answer
108 views
How to get multiple xvfb GraphicsDevice from java
I want to get a lot of screenshots from java in headless server.
To do this, my plan is below.
Use Xvfb for virtual screen.
To reduce tasks in queue fast, open multiple xvfb.
To get screenshots ...
1
vote
0answers
362 views
FreeFontPath: FPE “unix/:7100” refcount is 2, should be 1; fixing
I tried to run Xvfb in my Centos 5.7 machine to get thumbnails of websites.
I follow this Xvfb + Firefox site and install Xvfb, firefox on my Gnome Centos 5.7.
No problem at all for installation, ...
1
vote
2answers
195 views
How can I take advantage of my discrete graphics card on a headless server?
I'm working on a remote visualization project for BioMesh3D, harnessing a beefed up server to do processing and rendering. It's easy to get it working if we setup a user to auto-login to the ...
1
vote
2answers
884 views
Capybara-webkit, rspec integration specs, and xvfb: webkit_server: Fatal IO error: client killed
I'm trying to get a suite of integration specs running on a ubuntu server CI box using the headless gem, xvfb, and capybara-webkit for headless testing. Everything works beautifully on a local dev ...
1
vote
1answer
241 views
Running Chrome WebDriver on a linux server with no display
I'd like to run automated tests using selenium2's chrome webdriver on a linux server.
I've already set up firefox to run on the server by using Xvfb (See ...
1
vote
1answer
243 views
Resizing an Xvfb display
Simple Question: Is there a way to resize a Xvfb display?
I tried with RandR but it seems that the RandR extension is not supported by Xvfb. Are there other ways to resize the screen?
Thanks for ...
1
vote
1answer
356 views
NodeJS packages to handle parallel headless tests on linux box(es) with selenium grid like features?
I need to handle authenticated multiple users running parallel tests on the selenium standalone server, and discovered two webdriver clients on nodejs. There's webdriver-js and wd-js. Which is more ...
0
votes
1answer
14 views
Running GWT Devmode with Xvfb on CentOS
I'm trying to run GWT Devmode with Ant on CentOS using Xvfb and I'm getting what appears to be a Java version error. The beginning of the stacktrace is
[java] JVM args ignored when same JVM is used
...
0
votes
0answers
21 views
Xorg seems to kill EC2 instances (CentOS 5.4)
My end goal is to run firefox in headless mode with xvfb.
But Xvfb requires Xorg, and I'm running into a problem with Xorg.
When I fire up an instance using this AMI:
ami-4a24d623
...
0
votes
2answers
46 views
Problems with bundling Xvfb into application
Our application runs some commands in a headless mode using frame buffer display. We can't rely on fact that Xvfb is installed on every machine, but we suppose that X server is, so we bundle Xvfb ...
0
votes
2answers
197 views
unable to open X server
I am trying to generate a screenshot of a firefox window in my terminal, but I keep getting an error:
root@host [~]# DISPLAY=:1 firefox http://www.cnn.com & sleep 5 && DISPLAY=:1 import ...
0
votes
1answer
123 views
SetEnvironmentProperty to ChromeDriver programatically
i am running tests with SE2 and firefoxDriver in a headless
enviroment(Xvfb).
With FirefoxDriver i can set the DISPLAY enviroment property very
easy:
FirefoxBinary firefox = new ...
0
votes
1answer
144 views
Running PyQt Webkit script with Xvfb from a shell script
I am trying to run a Python script that involves PyQt Webkit on a headless server using xvfb. The following command works when I run it from the command line, but not from a bash script:
# ...
0
votes
1answer
222 views
Xvfb instance for multiple processes
I am developing an application on one of the servers of webfaction. I have a python class with two functions defined in it. Each function uses a spynner.Browser() object, which requires an X server ...
0
votes
1answer
504 views
Has anybody run Xvfb on EC2 with CentOS?
I am trying to get javascript-enabled cucumber running on CentOS in EC2 by following this tutorial: http://makandra.com/notes/1391-how-to-hide-your-selenium-browser-window-with-headless However, the ...
0
votes
1answer
147 views
xvfb - where do I download the xvfb standalone package?
I want to use xvfb to automate the process to create thumbnails images on urls from my site.
It is not clear where I should download a standalone xvfb application.
Where do I download the package?
...
0
votes
2answers
387 views
Why is selenium hanging on INFO - Checking Resource aliases, and how do I even debug this?
I'm trying to follow the tutorial here to setup a headless selenium test-run with jenkins. I'm running CentOS 5.6, and I've followed the instructions. Now, when I run this:
export DISPLAY=":99" ...
0
votes
1answer
369 views
Headless Selenium with Xvfb - JavaScript not working, but no <noscript>
I'm using Selenium on a Headless Linux machine with Xvfb and Firefox and got a little strange behaviour:
I have a button, which opens a inline popup with javascript and does a postback and load the ...
0
votes
2answers
573 views
selenium grid 2 to achieve continous integration headlessly using xvfb or xvnc?
So using grid 2, is there a configuration file to start up xvfb or xvnc each time selenium RC begins. Hub and Selenium RC is already installed on separate linux boxes.
In addition, is there a way to ...
0
votes
0answers
337 views
Testing iFrame content - Selenium + X Virtual FrameBuffer
I'm testing a web app, using X Virtual FrameBuffer and Selenium RC.
But I found a problem while testing the last update - it was added a iFrame to the app.
When I start selenium-server with xvfb, ...
0
votes
1answer
402 views
wkhtmltopdf extremely slow on Debian without X-server
Converting a pretty small HTML-file to PDF takes 2 seconds for my test enviroment (Windows 7). On the production web server the same file (Debian) needs 193 seconds.
The web server is being run with ...
0
votes
2answers
471 views
wkhtmltopdf command fails
I am trying to convert a HTML file to PDF using wkhtmltopdf.
For that purpose I have installed wkhtmltopdf on a Debian box and am trying to run this command:
/usr/bin/xvfb-run -a -s "-screen 0 ...
0
votes
1answer
138 views
How to disable any service windows inside Firefox?
I'm running Firefox under xvfb and taking webpages screenshots from it.
Is there any simple and robust way to disable any possible requests or windows that can spoil my screenshot? Like update ...