Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.51 KB

File metadata and controls

35 lines (28 loc) · 1.51 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.1.0]

Changed

  • Reworked CV POM API

[0.2.0]

Changed

  • Now you can add properties to OCR in convert_to_cvpom(source, ocr_props=None)
  • This properties can be added to the CVPOMDriver in the new kwargs:
kwargs = {'ocr': {'paragraph': True}} # Optional
MyCVPOMDriver(model_path, framework_specific_driver, **kwargs)

For now is only used for ocr and the values are any parameters that EasyOCR allows under self._reader.readtext(**ocr_props_comb) check here

[0.2.1]

Changed

  • adding pyautogui Driver (DesktopCVPOMDriver) to deal with OS native actions in #10
  • adding offset to the coordinates for interactions in #12
  • add double click and different click configurations in #13
  • adding hover function in #14
  • drag and drop methods in #15

[0.2.2]

Changed

  • adding adb driver to control Android devices without Appium in #18
  • adding querying in #21
  • Feature: long press in #22