Xvfb; X virtual framebuffer, is an X11 server that can run graphic applications without a physical screen.
0
votes
1answer
20 views
sh.py not executing xvfb-run
I'm trying to execute xvfb-run via py.sh but I'm getting sh.ErrorReturnCode_1 and no resulting pdf being created.
I created a small html file:
$ echo '<h1>Hello, World.</h1>' > ...
0
votes
1answer
22 views
Xvfb image buffering provokes java.awt.Headless exception
My java webapp hosted within a tomcat 7.0.39 needs xvbf to write into images and output them to the client. When I open the servlet which handles the image writing I get the following error message:
...
0
votes
0answers
34 views
tomcat crashes when buffered image is created via xvfb
When my webapp servlet calls xvfb to create a buffered image this error arises and tomcat just crashes.
/usr/lib/jvm/java-1.7.0-openjdk/bin/java: symbol lookup error: ...
0
votes
0answers
11 views
xvfb stopped buffering images through tomcat after update
I have a rhel 5 machine with a tomcat 7, java jdk 1.6 and xvfb server with all dependencies installed.
In the tomcat catalina.sh script is the Display variable exported and xvfb is already running ...
1
vote
0answers
138 views
Issue running firefox with xvfb-run (Selenium WebDriver)
I have a java app that uses the Selenium Webdriver to login to a site, check for specific texts and email me if it finds them. I have a cron job that runs the jar file every morning and stops it every ...
0
votes
0answers
69 views
QWebFrame object has no attribute documentElement
My code:
import sys
import time
from PyQt4.QtGui import QApplication
from PyQt4.QtCore import QUrl
from PyQt4.QtWebKit import *
class Browser(QWebView):
def __init__(self):
...
2
votes
0answers
105 views
Capybara element not found just on Travis
I'm trying to put the free software where I'm one of the collaborators to run the acceptance tests on Travis. Everything went very well except for the acceptance tests with selenium.
And this is a ...
1
vote
0answers
330 views
Google Chrome can't run in xvfb because extension “RANDR” missing
I try to run Google Chrome on xvfb display, but google show error about RANDR extension. Problem is that I added RANDR to xvfb and it loaded it.
So my steps are:
Run xvfb server using command:
Xvfb ...
0
votes
0answers
73 views
Continuous Integration - Running parallel tests suites that require xvfb
I'm having issues with parallel builds running that require an xvfb server. I was previously using the headless ruby gem, but had sporadic failures when certain test suites that both require ...
1
vote
0answers
46 views
xvfb-run with melt hangs
We are using melt utility to flatten vidoes. in it there is a plugin called kdenlivetitle. this plugin imposes title text on video but it requires X server. for that we are using xvfb-run but it hangs ...
0
votes
0answers
76 views
Automatizing controlling of Skype Linux UI application
I am the author of project Sevabot http://sevabot-skype-bot.readthedocs.org/ - a Skype bot for Linux.
As the server installation is painful ( ...
1
vote
0answers
63 views
Run chrome headless on Selenium [duplicate]
I would like to run a selenium-test using headless chrome.
First I downloaded the chromedriver and passed its location as parameter:
null=open('/dev/null','wb')
cmd = ...
0
votes
1answer
302 views
Selenium RC stuck at Checking Resource aliases
I am trying to use Selenium RC to run regression tests on a website. I created a test suite using the Selenium IDE tool and 3 tests associated with it. These tests run successfully within the IDE but ...
0
votes
0answers
108 views
Get pid from a java subprocess started with xvfb-run
I'm trying to get the PID of a java process started with xvfb-run. When started without xvfb-run, I use $! to get the PID of the last backgrounded process but as soon as I use xvfb-run I obviously get ...
1
vote
1answer
357 views
Jenkins, xvfb and selenium
I have been attemplting to follow the instructions here to get svfb running
https://wiki.jenkins-ci.org/display/JENKINS/Xvfb+Plugin
Currently the xvfb executable is at /usr/bin/Xvfb,
my project ...
1
vote
2answers
158 views
Compile static linked binary of Xvfb
I'm banging my head against the wall here. I'm trying to compile a static linked binary of the Xvfb virtual framebuffer.
http://manpages.ubuntu.com/manpages/natty/man1/Xvfb.1.html
Right now I'm ...
1
vote
0answers
593 views
Running Selenium Webdriver on Xvfb - firefox error
I'm trying to run some automated Selenium tests on a server at work running on centros with firefox 10.0.12 installed as follows:
Xvfb :99 -screen 0 800x600x16&
export DISPLAY=:99;
java -jar ...
1
vote
0answers
106 views
Getting Error : Error: cannot open display: IP:192.168.72.112
I am using selenium while running selenium code i am getting error:
WebDriverException: Message: 'The browser appears to have exited before we could connect. The output was: Error: cannot open ...
3
votes
2answers
159 views
How do I start mvn test phase on Xvfb?
I made some unit-tests using fest, now I need to run mvn my test using maven on a headless system. I would like to run test using Xvfb but I need help to configure maven to start Xvfb before testing ...
0
votes
1answer
183 views
py.test SetUp/TearDown for whole test suite
I have a Python package that needs access to X11. I want to use Xvfb so that I do not have to have a real X11 installed on the build machines -- Hudson in this case. So, I would like to start a Xvfb ...
0
votes
1answer
113 views
Maven and FEST-Swing Tests
I have some FEST-Swing test and I would like to run it with Maven under linux.
I tred using xvfb like this:
xvfb-run mvn -Dtest=e2e.MateriePrimeE2eTest test
But I have this error:
Running ...
0
votes
0answers
59 views
spawned Xvfb is not killed internally
I am running PyQtWebkit in my remote machine(using xvfb) for the crawling and over a period of time it spawns much Xvfb process and It emitss the message in log
"2013-01-07 04:13:23,582 - MScheduler ...
1
vote
1answer
294 views
vfb- what is the purpose of the virtual framebuffer?
I have seen this config flag CONFIG_FB_VIRTUAL=y
what does it for?
how it works?
what is the connection to xvfb?
0
votes
0answers
107 views
python selenium send_keys freeze
I've got a problem with selenium's send_keys function on Linux with Firefox.
.........
open('source.txt', 'wb').write(driver.page_source)
driver.save_screenshot('screen2.png')
time.sleep(5)
text_area ...
0
votes
0answers
68 views
selenium tests configuration
I have succesfully configured selenium in my application, with this snippet in my pom.
<build>
<plugin>
<groupId>org.codehaus.mojo</groupId>
...
0
votes
0answers
202 views
Memory leak using CutyCapt and Xvfb
I would like to capture a big number of screenshots of web pages.
I using CutyCapt library with Xvfb on ubuntu server.
Problem is:
If I trying to get about 4 000 screenshots of URL, Xvfb consume ...
0
votes
0answers
59 views
spynner on server linux
I install spynner in a server for my django app. It's the first time for me in a server and I have a problem with spynner. I read that Spynner needs xvfb for works and I installed it on the server.
...
1
vote
1answer
207 views
Xvfb error on windows when using watir with headless
I am trying to use headless with watir on windows 7.
env.rb
if ENV['HEADLESS']
headless = Headless.new
headless.start
at_exit do
headless.destroy
end
end
When I run a test I am ...
2
votes
1answer
344 views
Cucumber headless xvfb ubuntu
I'm trying to setup a Jenkins build server on Amazon EC2. I'm planning on running my cucumber test suite in headless mode.
I was successfully able to run headless in IRB
require 'watir-webdriver'
...
0
votes
0answers
373 views
Selenium hangs sometimes when launching Firefox headless
I have a headless Raspberry Pi machine with Xvfb installed which I've configured through crontab to run a Python script every hour. The script uses Selenium to do testing, and when I run it manually ...
0
votes
1answer
180 views
xvfb and wkhtmltoimage always grabs images with 1024 width
Im using wkhtmltoimage to grab an screenshot from a webserver and It always gets 1024px png images. What could I be doing wrong?
/usr/bin/xvfb-run.sh --server-args="-screen 0, 1280x1024x32 -ac ...
0
votes
1answer
108 views
Flash Player & Xvfb: Application crashed with an unhandled SIGSEGV
I'm using Xvfb to get screenshots of flash stuff, however when I use Xvfb to do this, right after flash is started in Xvfb, the error "Application crashed with an unhandled SIGSEGV" is output.
Any ...
0
votes
1answer
281 views
What is the difference between using HtmlUnitDriver and writing headless tests using Xvfb in linux?
I am a novice in testing.
I am working on Linux.
I was reading about testing in headless mode and came across two things. One was X virtual frame buffer which does graphical operations in memory. So, ...
0
votes
2answers
173 views
multiple headless firefox instances using watir-webdriver within rails application
I have a simple rails application written for scrapping a web page. The controller calls the scrapper utility in which I am using firefox in headless mode using watir-webdriver. The application works ...
3
votes
1answer
322 views
Running py.test with xvfb-run
I am trying to run tests in Jenkins for a Python package which uses PyQt4, and the tests create windows. Since I'm running the tests in Jenkins, I need to redirect the graphical output, so I'm using ...
4
votes
2answers
4k views
how to add the missing RANDR extension
i have setup the xvfb server on my headless server and when i m running the
DISPALY=:99 firefox
I am getting this exception missing RANDR extension
Many of them said to disable some xinerna from the ...
4
votes
1answer
470 views
How to properly configure the Selenium Maven Plugin to work with Xvfb to run headless
Background:
I'm using selenium-server-2.25.0 in conjunction with J-Unit 4 to run through a handful of UI testing scenarios for my GWT app. In my IDE (Netbeans 7.2), I can right-click on my project, ...
2
votes
2answers
824 views
xvfb failed to start in ubuntu
I trying to get a screen shot by using the following two tools (something relative to qt, webkit and etc. maybe)
https://github.com/adamn/python-webkit2png
http://cutycapt.sourceforge.net/
when ...
0
votes
3answers
574 views
PHP and Apache : shell_exec(wkhtmltopdf with xvfb) command doesn't work
I try to run the wkhtmltopdf (0.11.0 rc1) with php (5.4.2) on apache (2.4.2).
When I try to launch wkhtmltopdf-i386 --use-xserver http://www.google.com google.pdf 2>&1, I can find my pdf. Here ...
1
vote
0answers
452 views
Getting window list in Xvfb server
I'm trying to get the window list in a Xvfb server in a debian squeeze machine.
What I'm doing is:
$ Xvfb :2&
$ DISPLAY=:2; wmctrl -l
But I'm getting this error:
Cannot get client list ...
1
vote
2answers
785 views
How to test JavaFX 2 in a headless environment?
I am trying to automate testing for a JavaFX 2 application running on Java 7u6 with the integrated JavaFX 2.2.
To that end, I have built and integrated Jemmy3 and JemmyFX into my build environment.
A ...
0
votes
1answer
548 views
How to make Xvfb display visible?
I am running selenium through Xvfb on display number :99 like this:
/usr/bin/Xvfb :99 -ac -screen 0 1024x768x8 & export DISPLAY=":99" &&
java -jar ...
0
votes
0answers
162 views
Xvfb, /tmp/.X11-unix should be set to root
When running Xvfb remotely with -extension GLX, I get _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root.
I do not get this problem when running Xvfb locally, only when I SSH onto ...
5
votes
1answer
108 views
Why is text shown larger under xvfb?
I'm trying to test a GUI application using Xvfb. The problem I'm having is that the application is sensitive to how large its text is, which is apparently different when using Xvfb. The default font ...
0
votes
2answers
87 views
Xvfb top-left adjustment
I have an X11 virtual frame buffer that I would like to run just one particular program in so that I can connect and disconnect from either my desktop or tablet without closing the program (and also ...
0
votes
0answers
50 views
How can I ensure maven surefire cleans up java and external processes prior to moving to next module
I have a large maven multimodule build and I'm running into problems where surefire tests hold ports or X display buffers resulting in damage down the line.
Is there a surefire cleanup parameter that ...
0
votes
1answer
231 views
Rendering QWebView with flash
I'm trying to get a screen capture of a web page with a flash object in it. The page I'm trying to render is http://www.swellinfo.com/surf-forecast/san-jose-guatemala.html, specifically the swell ...
0
votes
2answers
1k views
xvfb with Selenium. Display is already in use error
I wanna run selenium tests from TeamCity using Maven at Linux server without display.
While running Selenium tests I'm getting the following error in TeamCity:
Failed to execute goal ...
2
votes
1answer
691 views
Xvfb multiple displays for parallel processing?
Curious about running multiple xvfb displays: I have between 10-50 instances of a script running in parallel that connect to an xvfb display. Is is advantageous to run the same number of xvfb displays ...
0
votes
0answers
228 views
[Selenium]Arbitrary error with Firefox Binary
I'm running some automated Selenium tests on my Debian server, every hour.
But, randomly, I have this error :
Failed to connect to binary
FirefoxBinary(/usr/lib/iceweasel/firefox-bin) on port ...


