PyVirtualDisplay is python wrapper for Xvfb, Xephyr and Xvnc.
Questions tagged [pyvirtualdisplay]
82 questions
0
votes
0 answers
Python module pyvirtualdisplay doesn't work on Python3.3 though it says it should
I've installed the python module pyvirtualdisplay from https://pypi.python.org/pypi/PyVirtualDisplay
It says it should work on python version 3.3
I then execute the code in python 3.3:
from pyvirtualdisplay import Display
myDisplay =…

bluemoon12
- 73
- 1
- 8
0
votes
1 answer
Selenium Pythonanywhere Cannot Locate Element
Anyone have any advice for locating elements on python anywhere using xvfb-run ? I get the driver up and display using the following code but when I try and locate an element by path I get cannot find element. This code works fine on my local…

GoBlue_MathMan
- 1,048
- 2
- 13
- 20
0
votes
1 answer
Python Selenium Firefox on Ubuntu: New Tabs Not Working
I'm doing remote web crawling and scraping, and hoping not to reload a new browser window for every link on one page.
The problem is that new tabs are not opening up with my Firefox web driver.
Here's what I've tried:
from selenium import…

legel
- 2,507
- 3
- 23
- 22
0
votes
2 answers
selenium plus pyvirtualdisplay not working on digitalocean ubuntu droplet
As the title, the following is not working on the digitalocean ubuntu droplet, but works on my local computer. All the software are the same.
It is just hanging there.
import os
from selenium import webdriver
from pyvirtualdisplay import…

Roy
- 75
- 2
- 9
0
votes
2 answers
chromedriver not rendering html pages properly in selenium+pyvirtualdisplay in ubuntu server
I am trying to render HTML pages in Ubuntu server (AWS-EC2) by using selenium and chromedriver with pyvirtualdisplay.
The HTML pages do not appear as they appear in my Windows PC.
Attaching screenshots taken from the webdriver.
Image as rendered in…

rohitkulky
- 1,182
- 10
- 24
-1
votes
1 answer
Unable to install Xvfb on Suse Linux
I am trying to run the selenium-webdriver using the python library on Suse 11.4 (64-bit)
For it to run headlessly, it requires another python package "pyvirtualdisplay" to run. I have been able to install both perfectly.
The problem now is that…

iceman
- 41
- 6
-1
votes
1 answer
What is the maximum number of selenium drivers on service like AWS-EC2 or Pythonanywhere
Using python-selenium and pyvirtualdisplay, I would like to open about 10 different Firefox browsers simultaneously on a remote server. However, on both AWS and pythonanywhere the firefox driver starts throwing exceptions at around the fifth opened…

gpanterov
- 1,365
- 2
- 15
- 25