Python XVFB error in windows

For virtual Framebuffer (mute testing) I use Xvfbwith PyVirtualDisplay, and it works fine in Ubuntu, but shows an error in Windows7. here is the piece of code where the problem arises.

from pyvirtualdisplay import Display
display = Display(visible=1, size=(300, 400))
display.start() 

but when i run the same command on windows i get this error

Traceback (most recent call last):
  File "C:\Python27\Scripts\pynt-script.py", line 9, in <module>
    load_entry_point('pynt==0.8.0', 'console_scripts', 'pynt')()
  File "C:\Python27\lib\site-packages\pynt\_pynt.py", line 295, in main
    build(sys.argv[1:])
  File "C:\Python27\lib\site-packages\pynt\_pynt.py", line 48, in build
    module = imp.load_source(path.splitext(path.basename(args.file))[0], args.fi
le)
  File "build.py", line 7, in <module>
    display = Display(visible=1, size=(300,400))
  File "C:\Python27\lib\site-packages\pyvirtualdisplay\display.py", line 33, in
__init__
    self._obj = self.display_class(
  File "C:\Python27\lib\site-packages\pyvirtualdisplay\display.py", line 50, in
display_class
    cls.check_installed()
  File "C:\Python27\lib\site-packages\pyvirtualdisplay\xvfb.py", line 34, in che
ck_installed
    ubuntu_package=PACKAGE).check_installed()
  File "C:\Python27\lib\site-packages\easyprocess\__init__.py", line 209, in che
ck_installed
    raise EasyProcessCheckInstalledError(self)
easyprocess.EasyProcessCheckInstalledError: cmd=['Xvfb', '-help']
OSError=[Error 2] The system cannot find the file specified
Program install error! 

I think my program cannot find xvfb program / library? I installed xvfbwrapper ( https://github.com/cgoldberg/xvfbwrapper ), but the problem remains the same. again i think xvfbwrapper is different from xvfb?

Any alternative for the Windows platform that can perform silent testing (virtual framebuffer)

+4
1

, Xvfb . Xvfb - X , Microsoft Windows 7.

+3

All Articles