tdrpa.tdcore 1.1.43__py39-none-win_amd64.whl → 1.2.8__py39-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tdrpa/bot.exe +0 -0
- tdrpa/tdcore/LocatorBrowser.pyi +8 -0
- tdrpa/tdcore/LocatorWindows.pyi +8 -0
- tdrpa/tdcore/__init__.pyi +8 -3
- tdrpa/tdcore/core/tdObject.pyi +8 -0
- tdrpa/tdcore/exception.pyi +2 -0
- tdrpa/tdcore/util/hotkey.pyi +2 -0
- tdrpa/tdcore-license/playwright/LICENSE +2183 -0
- tdrpa/tdcore.cp39-win_amd64.pyd +0 -0
- {tdrpa.tdcore-1.1.43.dist-info → tdrpa.tdcore-1.2.8.dist-info}/METADATA +2 -1
- tdrpa.tdcore-1.2.8.dist-info/RECORD +24 -0
- tdrpa/tdcore/locator/locatorWindows.pyi +0 -10
- tdrpa/tdcore/locator/tdObject.pyi +0 -15
- tdrpa.tdcore-1.1.43.dist-info/RECORD +0 -21
- /tdrpa/tdcore/{locator → core}/__init__.pyi +0 -0
- {tdrpa.tdcore-1.1.43.dist-info → tdrpa.tdcore-1.2.8.dist-info}/WHEEL +0 -0
- {tdrpa.tdcore-1.1.43.dist-info → tdrpa.tdcore-1.2.8.dist-info}/top_level.txt +0 -0
tdrpa/bot.exe
CHANGED
Binary file
|
@@ -0,0 +1,8 @@
|
|
1
|
+
from .core.tdObject import tdElement
|
2
|
+
from playwright.sync_api._generated import ElementHandle, Page
|
3
|
+
|
4
|
+
__all__ = ['timeout', 'findElement']
|
5
|
+
|
6
|
+
timeout: int
|
7
|
+
|
8
|
+
def findElement(selectorString: str, fromElement: tdElement | Page | ElementHandle, timeout: int = None) -> tdElement: ...
|
tdrpa/tdcore/__init__.pyi
CHANGED
@@ -1,6 +1,11 @@
|
|
1
|
-
_version: str
|
2
|
-
from .locator.locatorWindows import LocatorWindows as LocatorWindows
|
3
1
|
from .log.log import getLogger as getLogger, loggers as loggers
|
4
2
|
from .util.hotkey import hotkeyPause as hotkeyPause, hotkeyPauseHere as hotkeyPauseHere
|
5
3
|
|
6
|
-
__all__ = ['
|
4
|
+
__all__ = ['version', 'LocatorWindows', 'LocatorBrowser', 'hotkeyPause', 'hotkeyPauseHere', 'loggers', 'getLogger', 'exception']
|
5
|
+
|
6
|
+
version: str
|
7
|
+
|
8
|
+
# Names in __all__ with no definition:
|
9
|
+
# LocatorBrowser
|
10
|
+
# LocatorWindows
|
11
|
+
# exception
|
tdrpa/tdcore/util/hotkey.pyi
CHANGED