Visual testing framework. Combining selenium and computer vision.


License
MIT
Install
pip install nemonet==0.18.9

Documentation

nemo

helping test automation

Prerequisites

install ffmpeg and pyautogui

Installing

Typical python installation with pip

pip install nemonet

Coding

from nemo.recording import ScreenRecorder

record = ScreenRecorder()
record.start()
...
#do something that you want to record, e.g. your gui test.
...
record.stop()