xvfb Questions
1
I've been trying to run Playwright on AWS Lambda with xvfb for days. I was able to build a few variants of Docker images that worked locally, but when pushed to AWS always encountered errors.
Docke...
Baker asked 30/8, 2022 at 8:16
3
Solved
Trying to find how to avoid hanging Xvfb processes in our Python application, when using PyVirtualDisplay. The essential problem is that calling display.stop() (see code sample below) does not seem...
Vachon asked 27/8, 2013 at 22:28
2
Solved
Okay, so first I learned that Xvfb wasn't included with my OS X version, so I installed it from http://www.xquartz.org/.
and that seemed to have worked:
which xvfb
/opt/X11/bin/xvfb
But when I ...
Pyrochemical asked 30/11, 2015 at 3:32
2
Solved
In order to perform some JavaScript unit tests with karma inside a docker container (based on ubuntu 14.04) I'm starting firefox in the container using a karma-script-launcher with xvfb-run. The st...
2
Can you help me, why I get sometimes (50:50):
webkit_server.NoX11Error: Cannot connect to X. You can try running with xvfb-run.
When I start the script in parallel as:
xvfb-run -a python script...
Extant asked 19/5, 2015 at 17:20
0
I am trying to launch Chrome in CentOS using puppeteer but got errors like this:
[8012:8039:1220/204633.586208:ERROR:bus.cc(393)] Failed to connect to the bus: Could not parse server address: Unkno...
Cursive asked 20/12, 2021 at 13:9
2
Solved
I'm trying to run 2 cypress docker container in parallel using node js spawn
docker run -v path/to/ws:/e2e -w /e2e --network host cypress/included:8.0.0 --spec 'cypress/integration/cytorus-cache/1....
2
I'm using pyvirtualdisplay to run a test with a headless Firefox browser. This is the code I'm using :
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from p...
Tourcoing asked 12/12, 2016 at 10:53
0
I'm trying to build a simple server that basically:
opens a webpage with a puppeteer instance.
records the webpage and save the video file.
I was able to implement this with puppeteer-stream and ...
Isopiestic asked 17/4, 2021 at 19:9
2
I try to use Xvfb to make the headless code run. However, I encountered the problem that "Xvfb not found on your system" when I tried to run my ruby code. Then I tried to install Xvfb using
sudo a...
Lalalalage asked 28/1, 2014 at 2:18
1
Solved
To run Cypress, it requires that system dependencies be installed, Cypress Dependencies
apt-get install libgtk2.0-0 libgtk-3-0 libnotify-dev
libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth ...
Dearden asked 7/8, 2020 at 0:12
3
I'm trying desperately to give xvfb-run some resolution arguments to take screenshots of websites with wkhtmltox in different resolutions.
I'm using both xvfb-run and wkhtmltox on CentOS.
xvfb-ru...
Labour asked 7/4, 2014 at 13:23
1
I am trying to execute headless chrome Selenium tests via Jenkins using XVFB on UBUNTU AWS/VM.
My Jenkins XVFB config is:
Pre-build Execute Shell:
export DISPLAY=:98
x11vnc -xkb -noxrecord -noxfix...
Jessamyn asked 17/9, 2020 at 10:17
14
I am running a python 2.7 script on a p2.xlarge AWS server through Jupyter (Ubuntu 14.04). I would like to be able to render my simulations.
Minimal working example
import gym
env = gym.make('Car...
Weatherley asked 22/10, 2016 at 18:42
4
Solved
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 http://www.semicomplete.com/blog/geekery/x...
Crystacrystal asked 11/8, 2011 at 9:56
5
I'm trying to find a Ubuntu operating system, version of xorg, and version of xvfb that are compatible. Can anyone help me with directions to install xvfb without getting a hang on
Initializing bui...
1
I'm trying to run OpenGL on headless ubuntu server.
GPU / Driver : NVIDIA Geforce GTX 1080Ti / version 418.67
Using freeglut (installed by running apt install freeglut3-dev)
Using Xvfb (Since it ...
3
Solved
I am going to port some screenshot grabbing code (C++) for linux to osx. The current solution run graphical applications in xvfb and then use xlib to grab screenshots from the display. (That will a...
Totality asked 28/2, 2012 at 13:37
1
I'm trying to containerize a Node application that creates snapshots of .STL files. This application is started through xvfb-run to provide it a mock GUI in which it can generate said snapshots, an...
0
I'm trying to run a Vulkan-based graphical application on a headless Ubuntu 19.10 virtual machine, via xvfb.
Starting from a bare Ubuntu 19.10 image (created using lxc), I prep the machine as foll...
1
Solved
I am trying to capture html5 video with js/css effects on it programmatically. I tried a couple of methods;
First I find this great blog post and implemented it. Everything was perfect till I fou...
Typewriter asked 14/11, 2017 at 19:57
0
I tried to make the question as reproducible as possible. So here is the docker commands:
docker run --name headless_test -ti python:3.6-jessie /bin/bash
And inside the docker execute the follow...
2
I would like to run firefox (or any graphical application) inside docker container.
My requirement: When I start the container, I should be creating a virtual display, starting VNC server and the...
Meza asked 25/3, 2016 at 13:48
4
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 64...
Gingili asked 25/4, 2011 at 7:11
4
Solved
I need 2 packages for my Google Cloud Functions (GCF) functions to work properly. I'd typically install them with the following command on Ubuntu:
apt-get -y install firefox xvfb
However, I don'...
Tote asked 24/8, 2018 at 22:27
1 Next >
© 2022 - 2024 — McMap. All rights reserved.