1
vote
2answers
443 views

Ghostdriver actual performance gain

I've recently switched from FirefoxDriver to GhostDriver. My test suite (roughlty around 150 end to end tests) used to take 25 minutes to run. Now with Ghostdriver it's taking 23 minutes. So in total ...
0
votes
0answers
371 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 ...
3
votes
0answers
592 views

Firefox X11 in Mac OSX Moutain Lion 10.8

We are running selenium tests (firefox automation) and I would like to forward it to the background using the headless gem. (https://github.com/leonid-shevtsov/headless). Everything was working well ...
1
vote
0answers
278 views

SeleniumException: java.awt.AWTException: headless environment: Selenium Headless

I'm trying to run Selenium tests in an Headless environment but I'm getting this error all the time when trying to take screenshots of the Tests: [testng] [TestNG] Running: [testng] ...
0
votes
2answers
570 views

Headless browser for Python with multithreading, javascript, and Windows support

I've tried the following with no avail Mechanize/Twill. No Javascript support Selenium. Not headless Ghost. No Windows support Anyone got any suggestions?
0
votes
1answer
558 views

How to run my Python TestCase using Jenkins “Selenium” Plugin?

How to Integrate jenkins with Selenium-webdriver. I am using Python language for Selenium TestCases. I have tried 'pyvirtualdisplay' Python module to hide the display on Jenkins CLI. Currently I have ...
1
vote
2answers
2k views

HTMLUNIT with Headless Selenium

I am trying to scrape a website that contains images using a headless Selenium. Initially, the website populates 50 images. If you scroll down more and more images are loaded. Windows 7 x64 ...
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 ...
4
votes
1answer
1k views

Python - Firefox Headless

I've spent the last few days messing around with Selenium, Tor, and Firefox as a combination for multiple tasks. I've managed to write a simple script in Python that takes control of Firefox through ...
0
votes
1answer
1k views

Is it possible to run Selenium scripts without having an X server running, too?

I have a python script that uses selenium RC; specifically webdriver. I would love to have the script run as a post-commit hook, ideally through IE, Safari (if possible), Chrome & Firefox. But ...
1
vote
1answer
745 views

Selelum Headless in Ubuntu Server, minor error “The browser seems to have exited before we could connect”

So I am running Selenium on a Ubuntu Server VM and have a minor issue. When I start-up my VM and run a Selenium test script I get this error: selenium.common.exceptions.WebDriverException: Message: ...
4
votes
1answer
1k views

Running selenium on a headless EC2 machine?

I have a headless EC2 M1.Small instance running Ubuntu. I have been trying to use it to run a selenium test coded in Ruby. I am running selenium server 2.0b3 (the latest). i have enabled XVFB: ...
8
votes
2answers
2k views

Selenium and Headless Environment

I recently installed Python 2.7, Robot Framework and the Selenium Library (I still don't know if I succeded though...) on a Red Hat Server to run some test on a web application. So I tried a simple ...
2
votes
2answers
3k views

Running Selenium headless without using xvfb

I'm trying to run Selenium headless (without the browser appearing). Other questions have pointed to xvfb as the tool to do this. However, it appears highly unstable, crashing all the time, so I'm ...
2
votes
5answers
1k views

Programmatically remove Firefox's license agreement dialog

I am running regression tests with Selenium and am automatically launching instances of Firefox. The problem is my tests get stuck because of Firefox's license agreement dialog: . I can't click ...