Installing and Configuring xvfb

后端 未结 5 1214
生来不讨喜
生来不讨喜 2021-02-12 13:38

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 han

5条回答
  •  北海茫月
    2021-02-12 13:54

    Install Xvfb or Xephyr or Xvnc. Also install pyvirtualdisplay python module. This is for Ubuntu 14.04 and tested on 16.04 as well.

    sudo apt-get install python-pip
    sudo apt-get install xvfb xserver-xephyr vnc4server
    sudo pip install pyvirtualdisplay
    # optional
    sudo apt-get install python-pil scrot
    sudo pip install pyscreenshot
    

    Now you can start Xvfb from your python script. It will start Xvfb when your script will be executed. Add the following lines to your code.

    from pyvirtualdisplay import Display
    display = Display(visible=0, size=(1366, 768))
    display.start()
    

    Here is the example code.

    from pyvirtualdisplay import Display
    from selenium import webdriver
    
    display = Display(visible=0, size=(1366, 768))
    display.start()
    browser = webdriver.Firefox()
    browser.get('http://www.google.com')
    print browser.title
    browser.quit()
    
    display.stop()
    

提交回复
热议问题