I have the following environement
Ubuntu 14.04 LTS under ESXi Python, Selenium webdriver, Xvfb
My script runs just fine if I run it manually, but got stuck when I put the script in the crontab. I have used the export Display correctly and the firefox process starts however the browser just greys out and gets stuck only when the crontab starts the process. If I run it manually everything is fine. It even works via telnet if I used the code below:
display = Display(visible=0, size=(1024,768))
display.start()
<CODE>
display.stop()