You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
632 B
30 lines
632 B
3 years ago
|
# 1. Описание
|
||
|
|
||
|
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()
|
||
|
```
|
||
|
|
||
|
.. v1.2.12 replace:: v1.2.12
|
||
|
..
|
||
|
|
||
|
```
|
||
|
|author|
|
||
|
```
|
||
|
|
||
|
replace:: Ivan Maslov <[ivan.maslov@unicodelabs.ru](mailto:ivan.maslov@unicodelabs.ru)>
|