All Projects → eficode → robotframework-imagehorizonlibrary

eficode / robotframework-imagehorizonlibrary

Licence: MIT License
Cross-platform Robot Framework library for GUI automation based on image recognition

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
RobotFramework
109 projects

Projects that are alternatives of or similar to robotframework-imagehorizonlibrary

robot-framework-docker
Docker image to run robot framework acceptance testing in a docker container
Stars: ✭ 24 (-64.18%)
Mutual labels:  robot-framework, robotframework
robot-email-template
Email template for Robot Framework test results
Stars: ✭ 19 (-71.64%)
Mutual labels:  robot-framework, robotframework
page-modeller
⚙️ Browser DevTools extension for modelling web pages for automation.
Stars: ✭ 66 (-1.49%)
Mutual labels:  robot-framework, robotframework
robotframework-seleniumtestability
Extension for SeleniumLibrary that provides manual and automatic waiting for asyncronous events like fetch, xhr, etc.
Stars: ✭ 34 (-49.25%)
Mutual labels:  robot-framework, robotframework
robotframework-httprequestlibrary
Robot Framework's library to test REST interfaces utilizing Apache HttpClient
Stars: ✭ 20 (-70.15%)
Mutual labels:  robot-framework, robotframework
robotframework-zoomba
Extended Robot Framework libraries to make testing GUI, REST/SOAP API, Mobile, and Windows Desktop easier.
Stars: ✭ 121 (+80.6%)
Mutual labels:  robot-framework, robotframework
robotframework-excel
Robot-framework auto-test excel
Stars: ✭ 15 (-77.61%)
Mutual labels:  robotframework
robotframework-preso
Introduction to Robot Framework - TriTAUG Presentation
Stars: ✭ 16 (-76.12%)
Mutual labels:  robot-framework
concurrent-video-analytic-pipeline-optimization-sample-l
Create a concurrent video analysis pipeline featuring multistream face and human pose detection, vehicle attribute detection, and the ability to encode multiple videos to local storage in a single stream.
Stars: ✭ 39 (-41.79%)
Mutual labels:  image-recognition
Object-sorting-using-Robotic-arm-and-Image-processing
Sorting objects of different colors using robotic arm and using computer vision (image processing).
Stars: ✭ 21 (-68.66%)
Mutual labels:  image-recognition
Smart container
🍰🍎ColugoMum--Intelligent Retail Settlement Platform can accurately locate and identify each commodity, and can return a complete shopping list and the actual total price of commodities that customers should pay.
Stars: ✭ 141 (+110.45%)
Mutual labels:  image-recognition
robotframework-difflibrary
Robot Framework keyword library that will provide Diff capabilities
Stars: ✭ 23 (-65.67%)
Mutual labels:  robot-framework
doodle
Doodle image recognition with TensorFlow.
Stars: ✭ 23 (-65.67%)
Mutual labels:  image-recognition
ocr recognition
use java opencv tesseract ocr image words detects and recognition,use python generate jTessBoxEditor train box file
Stars: ✭ 52 (-22.39%)
Mutual labels:  image-recognition
react-atdd-playground
Template to (deliberate) practice your test-driven development skills.
Stars: ✭ 14 (-79.1%)
Mutual labels:  testing-library
reactjs-vite-tailwindcss-boilerplate
ReactJS + Vite boilerplate to be used with Tailwindcss.
Stars: ✭ 103 (+53.73%)
Mutual labels:  testing-library
robotframework-robocop
Tool for static code analysis of Robot Framework language
Stars: ✭ 112 (+67.16%)
Mutual labels:  robotframework
playwright-testing-library
🔍 Find elements in Playwright with queries from Testing Library
Stars: ✭ 160 (+138.81%)
Mutual labels:  testing-library
rfswarm
Robot Framework Swarm
Stars: ✭ 68 (+1.49%)
Mutual labels:  robot-framework
deforestation
A machine learning exercise, using KNN to classify deforested areas
Stars: ✭ 26 (-61.19%)
Mutual labels:  image-recognition

ImageHorizonLibrary

This Robot Framework library provides the facilities to automate GUIs based on image recognition similar to Sikuli. This library wraps pyautogui to achieve this.

For non pixel perfect matches, there is a feature called confidence level that comes with a dependency OpenCV (python package: opencv-python). This functionality is optional - you are not required to install opencv-python package if you do not use confidence level.

Keyword documentation

Keyword Documentation

Travis CI

Travis CI

https://travis-ci.org/Eficode/robotframework-imagehorizonlibrary.svg?branch=master

Prerequisites

On Ubuntu, you need to take special measures to make the screenshot functionality to work correctly. The keyboard functions might not work on Ubuntu when run in VirtualBox on Windows.

Development

Installation

If you have pip, installation is straightforward:

$ pip install robotframework-imagehorizonlibrary

This will automatically install dependencies as well as their dependencies.

Windows

ImageHorizonLibrary should work on Windows "out-of-the-box". Just run the commands above to install it.

OSX

NOTICE ImageHorizonLibrary does not currently work with XCode v.8. Please use a previous version.

You additionally need to install these for pyautogui:

$ pip install pyobjc-core pyobjc

For these, you need to install XCode

Linux

You additionally need to install these for pyautogui:

$ sudo apt-get install python-dev python-xlib

You might also need, depending on your Python distribution, to install:

$ sudo apt-get install python-tk

If you are using virtualenv, you must install python-xlib manually to the virtual environment for pyautogui:

$ pip install python-xlib-<latest version>.tar.gz

Running unit tests

$ python tests/utest/run_tests.py [verbosity=2]

Running acceptance tests

Additionally to unit test dependencies, you also need OpenCV, Eel, scrot and Chrome/Chromium browser. OpenCV is used because this tests are testing also confidence level. Browser is used by Eel for cross-platform GUI demo application. scrot is used for capturing screenshots.

$ pip install opencv-python eel

To run tests, run this command:

$ python tests/atest/run_tests.py

Updating Docs

To regenerate documentation (doc/ImageHorizonLibrary.html), use this command:

$ python -m robot.libdoc -P ./src ImageHorizonLibrary doc/ImageHorizonLibrary.html
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].