Skip to main content

VNC client for Pytest

Project description

https://img.shields.io/badge/source-github-orange https://img.shields.io/pypi/v/pytest-vnc?style=flat-square

pytest-vnc implements a VNC client in pure Python. It works on Mac, Linux and Windows. Use the vnc fixture to capture screenshots and send keyboard & mouse from your pytest tests:

def test_thing(vnc):
    # Screenshot
    print(vnc.width, vnc.height)
    pixels = vnc.capture()  # rgba numpy array of entire screen
    pixels = vnc.capture(x=100, y=0, width=50, height=75)
    # to use PIL/pillow:
    # image = Image.fromarray(pixels)

    # Keyboard input
    vnc.write('hi there!')  # keys are queued
    vnc.press('Ctrl', 'c')  # keys are stacked
    with vnc.hold('Ctrl'):
        vnc.press('Esc')

    # Mouse input
    vnc.move(100, 200)
    vnc.click()
    vnc.double_click()
    vnc.middle_click()
    vnc.right_click()
    vnc.scroll_up()
    vnc.scroll_down(repeat=10)
    with vnc.drag():
        vnc.move(300, 400)
    with vnc.middle_drag():
        vnc.move(500, 600)
    with vnc.right_drag():
        vnc.move(700, 800)

Installation

This package requires Python 3.7+.

Install pytest-vnc by running:

pip install pytest-vnc

Configuration

The following configuration options can be set in pytest.ini:

vnc_host

VNC hostname (default: localhost)

vnc_port

VNC port (default: 5900)

vnc_speed

VNC interactions per second (default: 20)

vnc_timeout

VNC connection timeout in seconds (default: 5)

vnc_user

VNC username (default: env var: PYTEST_VNC_USER or current user)

vnc_passwd

VNC password (default: env var: PYTEST_VNC_PASSWD)

The following attributes can be set on the vnc object:

speed

Interactions per second (default: 20)

sleep

Callable that accepts a duration in seconds and waits for that long (default: time.sleep())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_vnc-1.1.0-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file pytest_vnc-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: pytest_vnc-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.16

File hashes

Hashes for pytest_vnc-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 12529b910f31b5d47e65f924461a8327d2457d445b47d5bc046c9202047b8ed9
MD5 9c3bcffcbf2cb889db1565b817be0381
BLAKE2b-256 f9853079035ec01199c8df82b1cfa05ad064ab48ce7745efe0f2dc5caab8f45c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page