From 0c8e19c3a9fd8c6955144e25d3f7516ba89944bd Mon Sep 17 00:00:00 2001 From: Ivan Maslov Date: Tue, 31 May 2022 09:57:25 +0300 Subject: [PATCH] Consolidated RPA defs in pyOpenRPA.Robot (UIDesktop / Web, Keyboard, Clipboard, Mouse, Screen) --- Sources/pyOpenRPA/Robot/Keyboard.py | 1 + Sources/pyOpenRPA/Robot/Mouse.py | 1 + Sources/pyOpenRPA/Robot/Screen.py | 1 + Sources/pyOpenRPA/Robot/UIWeb.py | 1 + 4 files changed, 4 insertions(+) create mode 100644 Sources/pyOpenRPA/Robot/Keyboard.py create mode 100644 Sources/pyOpenRPA/Robot/Mouse.py create mode 100644 Sources/pyOpenRPA/Robot/Screen.py create mode 100644 Sources/pyOpenRPA/Robot/UIWeb.py diff --git a/Sources/pyOpenRPA/Robot/Keyboard.py b/Sources/pyOpenRPA/Robot/Keyboard.py new file mode 100644 index 00000000..b6a278fc --- /dev/null +++ b/Sources/pyOpenRPA/Robot/Keyboard.py @@ -0,0 +1 @@ +from keyboard import * \ No newline at end of file diff --git a/Sources/pyOpenRPA/Robot/Mouse.py b/Sources/pyOpenRPA/Robot/Mouse.py new file mode 100644 index 00000000..49af0760 --- /dev/null +++ b/Sources/pyOpenRPA/Robot/Mouse.py @@ -0,0 +1 @@ +from pyautogui import * \ No newline at end of file diff --git a/Sources/pyOpenRPA/Robot/Screen.py b/Sources/pyOpenRPA/Robot/Screen.py new file mode 100644 index 00000000..49af0760 --- /dev/null +++ b/Sources/pyOpenRPA/Robot/Screen.py @@ -0,0 +1 @@ +from pyautogui import * \ No newline at end of file diff --git a/Sources/pyOpenRPA/Robot/UIWeb.py b/Sources/pyOpenRPA/Robot/UIWeb.py new file mode 100644 index 00000000..f96cd590 --- /dev/null +++ b/Sources/pyOpenRPA/Robot/UIWeb.py @@ -0,0 +1 @@ +from selenium import * \ No newline at end of file