在Xvfb 中運行Selenium
問題描述:
問題描述:問題描述:
問題描述:
from pyvirtualdisplay import Display from selenium import webdriver display = Display(visible=0, size=(800, 600)) display.start() browser = webdriver.Firefox() browser.get('http://www.google.com') print browser.title browser.quit() display.stop()
問題描述:
from xvfbwrapper import Xvfb vdisplay = Xvfb() vdisplay.start() # launch stuff inside virtual display here vdisplay.stop()問題描述:
題目描述時在EC2 實例上,使用者遇到錯誤:「無法開啟顯示: :0"。
from xvfbwrapper import Xvfb with Xvfb() as xvfb: # launch stuff inside virtual display here # It starts/stops in this code block.解決方案:要在 Xvfb 無頭模式下執行 Selenium,請使用 PyVirtualDisplay 或適用於 Python 的 xvfbwrapper。 PyVirtualDisplay方法:Xvfbwrapper 方法:
以上是如何在 EC2 執行個體上的 Xvfb 中執行 Selenium Headless?的詳細內容。更多資訊請關注PHP中文網其他相關文章!