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.
Files changed (79) hide show
  1. zendriver/__init__.py +34 -0
  2. zendriver/_version.py +1 -0
  3. zendriver/cdp/README.md +4 -0
  4. zendriver/cdp/__init__.py +63 -0
  5. zendriver/cdp/accessibility.py +714 -0
  6. zendriver/cdp/animation.py +509 -0
  7. zendriver/cdp/audits.py +2430 -0
  8. zendriver/cdp/autofill.py +296 -0
  9. zendriver/cdp/background_service.py +224 -0
  10. zendriver/cdp/bluetooth_emulation.py +653 -0
  11. zendriver/cdp/browser.py +839 -0
  12. zendriver/cdp/cache_storage.py +315 -0
  13. zendriver/cdp/cast.py +168 -0
  14. zendriver/cdp/console.py +109 -0
  15. zendriver/cdp/crash_report_context.py +58 -0
  16. zendriver/cdp/css.py +2994 -0
  17. zendriver/cdp/debugger.py +1531 -0
  18. zendriver/cdp/device_access.py +142 -0
  19. zendriver/cdp/device_orientation.py +45 -0
  20. zendriver/cdp/dom.py +2344 -0
  21. zendriver/cdp/dom_debugger.py +322 -0
  22. zendriver/cdp/dom_snapshot.py +1022 -0
  23. zendriver/cdp/dom_storage.py +220 -0
  24. zendriver/cdp/emulation.py +1822 -0
  25. zendriver/cdp/event_breakpoints.py +56 -0
  26. zendriver/cdp/extensions.py +239 -0
  27. zendriver/cdp/fed_cm.py +287 -0
  28. zendriver/cdp/fetch.py +535 -0
  29. zendriver/cdp/file_system.py +117 -0
  30. zendriver/cdp/headless_experimental.py +126 -0
  31. zendriver/cdp/heap_profiler.py +403 -0
  32. zendriver/cdp/indexed_db.py +548 -0
  33. zendriver/cdp/input_.py +715 -0
  34. zendriver/cdp/inspector.py +85 -0
  35. zendriver/cdp/io.py +104 -0
  36. zendriver/cdp/layer_tree.py +507 -0
  37. zendriver/cdp/log.py +203 -0
  38. zendriver/cdp/media.py +324 -0
  39. zendriver/cdp/memory.py +318 -0
  40. zendriver/cdp/network.py +5856 -0
  41. zendriver/cdp/overlay.py +1645 -0
  42. zendriver/cdp/page.py +4214 -0
  43. zendriver/cdp/performance.py +126 -0
  44. zendriver/cdp/performance_timeline.py +213 -0
  45. zendriver/cdp/preload.py +663 -0
  46. zendriver/cdp/profiler.py +445 -0
  47. zendriver/cdp/pwa.py +277 -0
  48. zendriver/cdp/py.typed +0 -0
  49. zendriver/cdp/runtime.py +1762 -0
  50. zendriver/cdp/schema.py +51 -0
  51. zendriver/cdp/security.py +558 -0
  52. zendriver/cdp/service_worker.py +402 -0
  53. zendriver/cdp/smart_card_emulation.py +907 -0
  54. zendriver/cdp/storage.py +1656 -0
  55. zendriver/cdp/system_info.py +353 -0
  56. zendriver/cdp/target.py +859 -0
  57. zendriver/cdp/tethering.py +59 -0
  58. zendriver/cdp/tracing.py +408 -0
  59. zendriver/cdp/util.py +19 -0
  60. zendriver/cdp/web_audio.py +636 -0
  61. zendriver/cdp/web_authn.py +635 -0
  62. zendriver/cdp/web_mcp.py +238 -0
  63. zendriver/core/__init__.py +0 -0
  64. zendriver/core/_contradict.py +124 -0
  65. zendriver/core/browser.py +880 -0
  66. zendriver/core/cloudflare.py +269 -0
  67. zendriver/core/config.py +392 -0
  68. zendriver/core/connection.py +937 -0
  69. zendriver/core/element.py +1263 -0
  70. zendriver/core/expect.py +232 -0
  71. zendriver/core/intercept.py +171 -0
  72. zendriver/core/keys.py +595 -0
  73. zendriver/core/tab.py +1733 -0
  74. zendriver/core/util.py +361 -0
  75. zendriver/py.typed +0 -0
  76. zendriver_patch-0.15.3.post1.dist-info/METADATA +734 -0
  77. zendriver_patch-0.15.3.post1.dist-info/RECORD +79 -0
  78. zendriver_patch-0.15.3.post1.dist-info/WHEEL +4 -0
  79. 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"
@@ -0,0 +1,4 @@
1
+ ## Generated by PyCDP
2
+
3
+ The modules of this package were generated by [pycdp], do not modify their contents because the
4
+ changes will be overwritten in next generations.
@@ -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
+ )