zendriver-patch 0.15.3.post1__py3-none-any.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.
- zendriver/__init__.py +34 -0
- zendriver/_version.py +1 -0
- zendriver/cdp/README.md +4 -0
- zendriver/cdp/__init__.py +63 -0
- zendriver/cdp/accessibility.py +714 -0
- zendriver/cdp/animation.py +509 -0
- zendriver/cdp/audits.py +2430 -0
- zendriver/cdp/autofill.py +296 -0
- zendriver/cdp/background_service.py +224 -0
- zendriver/cdp/bluetooth_emulation.py +653 -0
- zendriver/cdp/browser.py +839 -0
- zendriver/cdp/cache_storage.py +315 -0
- zendriver/cdp/cast.py +168 -0
- zendriver/cdp/console.py +109 -0
- zendriver/cdp/crash_report_context.py +58 -0
- zendriver/cdp/css.py +2994 -0
- zendriver/cdp/debugger.py +1531 -0
- zendriver/cdp/device_access.py +142 -0
- zendriver/cdp/device_orientation.py +45 -0
- zendriver/cdp/dom.py +2344 -0
- zendriver/cdp/dom_debugger.py +322 -0
- zendriver/cdp/dom_snapshot.py +1022 -0
- zendriver/cdp/dom_storage.py +220 -0
- zendriver/cdp/emulation.py +1822 -0
- zendriver/cdp/event_breakpoints.py +56 -0
- zendriver/cdp/extensions.py +239 -0
- zendriver/cdp/fed_cm.py +287 -0
- zendriver/cdp/fetch.py +535 -0
- zendriver/cdp/file_system.py +117 -0
- zendriver/cdp/headless_experimental.py +126 -0
- zendriver/cdp/heap_profiler.py +403 -0
- zendriver/cdp/indexed_db.py +548 -0
- zendriver/cdp/input_.py +715 -0
- zendriver/cdp/inspector.py +85 -0
- zendriver/cdp/io.py +104 -0
- zendriver/cdp/layer_tree.py +507 -0
- zendriver/cdp/log.py +203 -0
- zendriver/cdp/media.py +324 -0
- zendriver/cdp/memory.py +318 -0
- zendriver/cdp/network.py +5856 -0
- zendriver/cdp/overlay.py +1645 -0
- zendriver/cdp/page.py +4214 -0
- zendriver/cdp/performance.py +126 -0
- zendriver/cdp/performance_timeline.py +213 -0
- zendriver/cdp/preload.py +663 -0
- zendriver/cdp/profiler.py +445 -0
- zendriver/cdp/pwa.py +277 -0
- zendriver/cdp/py.typed +0 -0
- zendriver/cdp/runtime.py +1762 -0
- zendriver/cdp/schema.py +51 -0
- zendriver/cdp/security.py +558 -0
- zendriver/cdp/service_worker.py +402 -0
- zendriver/cdp/smart_card_emulation.py +907 -0
- zendriver/cdp/storage.py +1656 -0
- zendriver/cdp/system_info.py +353 -0
- zendriver/cdp/target.py +859 -0
- zendriver/cdp/tethering.py +59 -0
- zendriver/cdp/tracing.py +408 -0
- zendriver/cdp/util.py +19 -0
- zendriver/cdp/web_audio.py +636 -0
- zendriver/cdp/web_authn.py +635 -0
- zendriver/cdp/web_mcp.py +238 -0
- zendriver/core/__init__.py +0 -0
- zendriver/core/_contradict.py +124 -0
- zendriver/core/browser.py +880 -0
- zendriver/core/cloudflare.py +269 -0
- zendriver/core/config.py +392 -0
- zendriver/core/connection.py +937 -0
- zendriver/core/element.py +1263 -0
- zendriver/core/expect.py +232 -0
- zendriver/core/intercept.py +171 -0
- zendriver/core/keys.py +595 -0
- zendriver/core/tab.py +1733 -0
- zendriver/core/util.py +361 -0
- zendriver/py.typed +0 -0
- zendriver_patch-0.15.3.post1.dist-info/METADATA +734 -0
- zendriver_patch-0.15.3.post1.dist-info/RECORD +79 -0
- zendriver_patch-0.15.3.post1.dist-info/WHEEL +4 -0
- zendriver_patch-0.15.3.post1.dist-info/licenses/LICENSE +619 -0
zendriver/__init__.py
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
from zendriver import cdp
|
|
2
|
+
from zendriver._version import __version__
|
|
3
|
+
from zendriver.core import util
|
|
4
|
+
from zendriver.core._contradict import (
|
|
5
|
+
ContraDict, # noqa
|
|
6
|
+
cdict,
|
|
7
|
+
)
|
|
8
|
+
from zendriver.core.browser import Browser
|
|
9
|
+
from zendriver.core.config import Config
|
|
10
|
+
from zendriver.core.connection import CommandTimeoutError, Connection
|
|
11
|
+
from zendriver.core.element import Element
|
|
12
|
+
from zendriver.core.tab import Tab
|
|
13
|
+
from zendriver.core.util import loop, start
|
|
14
|
+
from zendriver.core.keys import KeyEvents, SpecialKeys, KeyPressEvent, KeyModifiers
|
|
15
|
+
|
|
16
|
+
__all__ = [
|
|
17
|
+
"__version__",
|
|
18
|
+
"loop",
|
|
19
|
+
"Browser",
|
|
20
|
+
"Tab",
|
|
21
|
+
"cdp",
|
|
22
|
+
"Config",
|
|
23
|
+
"start",
|
|
24
|
+
"util",
|
|
25
|
+
"Element",
|
|
26
|
+
"ContraDict",
|
|
27
|
+
"cdict",
|
|
28
|
+
"Connection",
|
|
29
|
+
"CommandTimeoutError",
|
|
30
|
+
"KeyEvents",
|
|
31
|
+
"SpecialKeys",
|
|
32
|
+
"KeyPressEvent",
|
|
33
|
+
"KeyModifiers",
|
|
34
|
+
]
|
zendriver/_version.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.15.3.post1"
|
zendriver/cdp/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# DO NOT EDIT THIS FILE!
|
|
2
|
+
#
|
|
3
|
+
# This file is generated from the CDP specification. If you need to make
|
|
4
|
+
# changes, edit the generator and regenerate all of the modules.
|
|
5
|
+
|
|
6
|
+
from . import (
|
|
7
|
+
accessibility,
|
|
8
|
+
animation,
|
|
9
|
+
audits,
|
|
10
|
+
autofill,
|
|
11
|
+
background_service,
|
|
12
|
+
bluetooth_emulation,
|
|
13
|
+
browser,
|
|
14
|
+
css,
|
|
15
|
+
cache_storage,
|
|
16
|
+
cast,
|
|
17
|
+
console,
|
|
18
|
+
crash_report_context,
|
|
19
|
+
dom,
|
|
20
|
+
dom_debugger,
|
|
21
|
+
dom_snapshot,
|
|
22
|
+
dom_storage,
|
|
23
|
+
debugger,
|
|
24
|
+
device_access,
|
|
25
|
+
device_orientation,
|
|
26
|
+
emulation,
|
|
27
|
+
event_breakpoints,
|
|
28
|
+
extensions,
|
|
29
|
+
fed_cm,
|
|
30
|
+
fetch,
|
|
31
|
+
file_system,
|
|
32
|
+
headless_experimental,
|
|
33
|
+
heap_profiler,
|
|
34
|
+
io,
|
|
35
|
+
indexed_db,
|
|
36
|
+
input_,
|
|
37
|
+
inspector,
|
|
38
|
+
layer_tree,
|
|
39
|
+
log,
|
|
40
|
+
media,
|
|
41
|
+
memory,
|
|
42
|
+
network,
|
|
43
|
+
overlay,
|
|
44
|
+
pwa,
|
|
45
|
+
page,
|
|
46
|
+
performance,
|
|
47
|
+
performance_timeline,
|
|
48
|
+
preload,
|
|
49
|
+
profiler,
|
|
50
|
+
runtime,
|
|
51
|
+
schema,
|
|
52
|
+
security,
|
|
53
|
+
service_worker,
|
|
54
|
+
smart_card_emulation,
|
|
55
|
+
storage,
|
|
56
|
+
system_info,
|
|
57
|
+
target,
|
|
58
|
+
tethering,
|
|
59
|
+
tracing,
|
|
60
|
+
web_audio,
|
|
61
|
+
web_authn,
|
|
62
|
+
web_mcp,
|
|
63
|
+
)
|