1. Description

pyOpenRPA Robot is the python package which allow you to create best RPA program.

The description of the functions you can find page ‘Defs’ (see menu)

Here is the example of the pyOpenRPA usage.

# EXAMPLE 1
from pyOpenRPA.Robot import UIDesktop

lNotepadOKButton = UIDesktop.UIOSelector_Get_UIO(
    inSpecificationList=[
        {"title":"notepad.exe"},{"title":"OK"}],
    inElement=None,
    inFlagRaiseException=True)

lNotepadOKButton.click()