chromedeveloperprotocol-client 0.1.0__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.
- cdp/__init__.py +4 -0
- cdp/domains.py +582 -0
- cdp/generator/__init__.py +3 -0
- cdp/generator/client_generator.py +246 -0
- cdp/generator/constant.py +4 -0
- cdp/generator/domain_generator.py +149 -0
- cdp/generator/event_generator.py +202 -0
- cdp/generator/method_generator.py +215 -0
- cdp/generator/service.py +153 -0
- cdp/generator/type_generator.py +231 -0
- cdp/protocol/__init__.py +0 -0
- cdp/protocol/accessibility/__init__.py +0 -0
- cdp/protocol/accessibility/events/__init__.py +0 -0
- cdp/protocol/accessibility/events/service.py +37 -0
- cdp/protocol/accessibility/events/types.py +14 -0
- cdp/protocol/accessibility/methods/__init__.py +0 -0
- cdp/protocol/accessibility/methods/service.py +109 -0
- cdp/protocol/accessibility/methods/types.py +70 -0
- cdp/protocol/accessibility/service.py +21 -0
- cdp/protocol/accessibility/types.py +89 -0
- cdp/protocol/animation/__init__.py +0 -0
- cdp/protocol/animation/events/__init__.py +0 -0
- cdp/protocol/animation/events/service.py +53 -0
- cdp/protocol/animation/events/types.py +20 -0
- cdp/protocol/animation/methods/__init__.py +0 -0
- cdp/protocol/animation/methods/service.py +131 -0
- cdp/protocol/animation/methods/types.py +52 -0
- cdp/protocol/animation/service.py +21 -0
- cdp/protocol/animation/types.py +79 -0
- cdp/protocol/audits/__init__.py +0 -0
- cdp/protocol/audits/events/__init__.py +0 -0
- cdp/protocol/audits/events/service.py +29 -0
- cdp/protocol/audits/events/types.py +10 -0
- cdp/protocol/audits/methods/__init__.py +0 -0
- cdp/protocol/audits/methods/service.py +76 -0
- cdp/protocol/audits/methods/types.py +36 -0
- cdp/protocol/audits/service.py +21 -0
- cdp/protocol/audits/types.py +293 -0
- cdp/protocol/autofill/__init__.py +0 -0
- cdp/protocol/autofill/events/__init__.py +0 -0
- cdp/protocol/autofill/events/service.py +29 -0
- cdp/protocol/autofill/events/types.py +14 -0
- cdp/protocol/autofill/methods/__init__.py +0 -0
- cdp/protocol/autofill/methods/service.py +65 -0
- cdp/protocol/autofill/methods/types.py +22 -0
- cdp/protocol/autofill/service.py +21 -0
- cdp/protocol/autofill/types.py +54 -0
- cdp/protocol/background_service/__init__.py +0 -0
- cdp/protocol/background_service/events/__init__.py +0 -0
- cdp/protocol/background_service/events/service.py +37 -0
- cdp/protocol/background_service/events/types.py +14 -0
- cdp/protocol/background_service/methods/__init__.py +0 -0
- cdp/protocol/background_service/methods/service.py +65 -0
- cdp/protocol/background_service/methods/types.py +17 -0
- cdp/protocol/background_service/service.py +21 -0
- cdp/protocol/background_service/types.py +32 -0
- cdp/protocol/bluetooth_emulation/__init__.py +0 -0
- cdp/protocol/bluetooth_emulation/events/__init__.py +0 -0
- cdp/protocol/bluetooth_emulation/events/service.py +45 -0
- cdp/protocol/bluetooth_emulation/events/types.py +23 -0
- cdp/protocol/bluetooth_emulation/methods/__init__.py +0 -0
- cdp/protocol/bluetooth_emulation/methods/service.py +186 -0
- cdp/protocol/bluetooth_emulation/methods/types.py +81 -0
- cdp/protocol/bluetooth_emulation/service.py +21 -0
- cdp/protocol/bluetooth_emulation/types.py +45 -0
- cdp/protocol/browser/__init__.py +0 -0
- cdp/protocol/browser/events/__init__.py +0 -0
- cdp/protocol/browser/events/service.py +37 -0
- cdp/protocol/browser/events/types.py +28 -0
- cdp/protocol/browser/methods/__init__.py +0 -0
- cdp/protocol/browser/methods/service.py +230 -0
- cdp/protocol/browser/methods/types.py +126 -0
- cdp/protocol/browser/service.py +21 -0
- cdp/protocol/browser/types.py +57 -0
- cdp/protocol/cache_storage/__init__.py +0 -0
- cdp/protocol/cache_storage/events/__init__.py +0 -0
- cdp/protocol/cache_storage/events/service.py +20 -0
- cdp/protocol/cache_storage/events/types.py +3 -0
- cdp/protocol/cache_storage/methods/__init__.py +0 -0
- cdp/protocol/cache_storage/methods/service.py +76 -0
- cdp/protocol/cache_storage/methods/types.py +57 -0
- cdp/protocol/cache_storage/service.py +21 -0
- cdp/protocol/cache_storage/types.py +49 -0
- cdp/protocol/cast/__init__.py +0 -0
- cdp/protocol/cast/events/__init__.py +0 -0
- cdp/protocol/cast/events/service.py +37 -0
- cdp/protocol/cast/events/types.py +12 -0
- cdp/protocol/cast/methods/__init__.py +0 -0
- cdp/protocol/cast/methods/service.py +87 -0
- cdp/protocol/cast/methods/types.py +15 -0
- cdp/protocol/cast/service.py +21 -0
- cdp/protocol/cast/types.py +9 -0
- cdp/protocol/css/__init__.py +0 -0
- cdp/protocol/css/events/__init__.py +0 -0
- cdp/protocol/css/events/service.py +69 -0
- cdp/protocol/css/events/types.py +27 -0
- cdp/protocol/css/methods/__init__.py +0 -0
- cdp/protocol/css/methods/service.py +428 -0
- cdp/protocol/css/methods/types.py +278 -0
- cdp/protocol/css/service.py +21 -0
- cdp/protocol/css/types.py +451 -0
- cdp/protocol/debugger/__init__.py +0 -0
- cdp/protocol/debugger/events/__init__.py +0 -0
- cdp/protocol/debugger/events/service.py +53 -0
- cdp/protocol/debugger/events/types.py +112 -0
- cdp/protocol/debugger/methods/__init__.py +0 -0
- cdp/protocol/debugger/methods/service.py +362 -0
- cdp/protocol/debugger/methods/types.py +250 -0
- cdp/protocol/debugger/service.py +21 -0
- cdp/protocol/debugger/types.py +91 -0
- cdp/protocol/device_access/__init__.py +0 -0
- cdp/protocol/device_access/events/__init__.py +0 -0
- cdp/protocol/device_access/events/service.py +29 -0
- cdp/protocol/device_access/events/types.py +12 -0
- cdp/protocol/device_access/methods/__init__.py +0 -0
- cdp/protocol/device_access/methods/service.py +65 -0
- cdp/protocol/device_access/methods/types.py +16 -0
- cdp/protocol/device_access/service.py +21 -0
- cdp/protocol/device_access/types.py +13 -0
- cdp/protocol/device_orientation/__init__.py +0 -0
- cdp/protocol/device_orientation/events/__init__.py +0 -0
- cdp/protocol/device_orientation/events/service.py +20 -0
- cdp/protocol/device_orientation/events/types.py +3 -0
- cdp/protocol/device_orientation/methods/__init__.py +0 -0
- cdp/protocol/device_orientation/methods/service.py +43 -0
- cdp/protocol/device_orientation/methods/types.py +12 -0
- cdp/protocol/device_orientation/service.py +21 -0
- cdp/protocol/device_orientation/types.py +3 -0
- cdp/protocol/dom/__init__.py +0 -0
- cdp/protocol/dom/events/__init__.py +0 -0
- cdp/protocol/dom/events/service.py +165 -0
- cdp/protocol/dom/events/types.py +97 -0
- cdp/protocol/dom/methods/__init__.py +0 -0
- cdp/protocol/dom/methods/service.py +593 -0
- cdp/protocol/dom/methods/types.py +384 -0
- cdp/protocol/dom/service.py +21 -0
- cdp/protocol/dom/types.py +151 -0
- cdp/protocol/dom_debugger/__init__.py +0 -0
- cdp/protocol/dom_debugger/events/__init__.py +0 -0
- cdp/protocol/dom_debugger/events/service.py +20 -0
- cdp/protocol/dom_debugger/events/types.py +3 -0
- cdp/protocol/dom_debugger/methods/__init__.py +0 -0
- cdp/protocol/dom_debugger/methods/service.py +109 -0
- cdp/protocol/dom_debugger/methods/types.py +51 -0
- cdp/protocol/dom_debugger/service.py +21 -0
- cdp/protocol/dom_debugger/types.py +36 -0
- cdp/protocol/dom_snapshot/__init__.py +0 -0
- cdp/protocol/dom_snapshot/events/__init__.py +0 -0
- cdp/protocol/dom_snapshot/events/service.py +20 -0
- cdp/protocol/dom_snapshot/events/types.py +3 -0
- cdp/protocol/dom_snapshot/methods/__init__.py +0 -0
- cdp/protocol/dom_snapshot/methods/service.py +54 -0
- cdp/protocol/dom_snapshot/methods/types.py +28 -0
- cdp/protocol/dom_snapshot/service.py +21 -0
- cdp/protocol/dom_snapshot/types.py +220 -0
- cdp/protocol/dom_storage/__init__.py +0 -0
- cdp/protocol/dom_storage/events/__init__.py +0 -0
- cdp/protocol/dom_storage/events/service.py +53 -0
- cdp/protocol/dom_storage/events/types.py +22 -0
- cdp/protocol/dom_storage/methods/__init__.py +0 -0
- cdp/protocol/dom_storage/methods/service.py +87 -0
- cdp/protocol/dom_storage/methods/types.py +27 -0
- cdp/protocol/dom_storage/service.py +21 -0
- cdp/protocol/dom_storage/types.py +15 -0
- cdp/protocol/emulation/__init__.py +0 -0
- cdp/protocol/emulation/events/__init__.py +0 -0
- cdp/protocol/emulation/events/service.py +29 -0
- cdp/protocol/emulation/events/types.py +6 -0
- cdp/protocol/emulation/methods/__init__.py +0 -0
- cdp/protocol/emulation/methods/service.py +494 -0
- cdp/protocol/emulation/methods/types.py +261 -0
- cdp/protocol/emulation/service.py +21 -0
- cdp/protocol/emulation/types.py +132 -0
- cdp/protocol/event_breakpoints/__init__.py +0 -0
- cdp/protocol/event_breakpoints/events/__init__.py +0 -0
- cdp/protocol/event_breakpoints/events/service.py +20 -0
- cdp/protocol/event_breakpoints/events/types.py +3 -0
- cdp/protocol/event_breakpoints/methods/__init__.py +0 -0
- cdp/protocol/event_breakpoints/methods/service.py +54 -0
- cdp/protocol/event_breakpoints/methods/types.py +10 -0
- cdp/protocol/event_breakpoints/service.py +21 -0
- cdp/protocol/event_breakpoints/types.py +3 -0
- cdp/protocol/extensions/__init__.py +0 -0
- cdp/protocol/extensions/events/__init__.py +0 -0
- cdp/protocol/extensions/events/service.py +20 -0
- cdp/protocol/extensions/events/types.py +3 -0
- cdp/protocol/extensions/methods/__init__.py +0 -0
- cdp/protocol/extensions/methods/service.py +87 -0
- cdp/protocol/extensions/methods/types.py +46 -0
- cdp/protocol/extensions/service.py +21 -0
- cdp/protocol/extensions/types.py +6 -0
- cdp/protocol/fed_cm/__init__.py +0 -0
- cdp/protocol/fed_cm/events/__init__.py +0 -0
- cdp/protocol/fed_cm/events/service.py +37 -0
- cdp/protocol/fed_cm/events/types.py +18 -0
- cdp/protocol/fed_cm/methods/__init__.py +0 -0
- cdp/protocol/fed_cm/methods/service.py +98 -0
- cdp/protocol/fed_cm/methods/types.py +26 -0
- cdp/protocol/fed_cm/service.py +21 -0
- cdp/protocol/fed_cm/types.py +25 -0
- cdp/protocol/fetch/__init__.py +0 -0
- cdp/protocol/fetch/events/__init__.py +0 -0
- cdp/protocol/fetch/events/service.py +37 -0
- cdp/protocol/fetch/events/types.py +47 -0
- cdp/protocol/fetch/methods/__init__.py +0 -0
- cdp/protocol/fetch/methods/service.py +120 -0
- cdp/protocol/fetch/methods/types.py +85 -0
- cdp/protocol/fetch/service.py +21 -0
- cdp/protocol/fetch/types.py +41 -0
- cdp/protocol/file_system/__init__.py +0 -0
- cdp/protocol/file_system/events/__init__.py +0 -0
- cdp/protocol/file_system/events/service.py +20 -0
- cdp/protocol/file_system/events/types.py +3 -0
- cdp/protocol/file_system/methods/__init__.py +0 -0
- cdp/protocol/file_system/methods/service.py +32 -0
- cdp/protocol/file_system/methods/types.py +14 -0
- cdp/protocol/file_system/service.py +21 -0
- cdp/protocol/file_system/types.py +28 -0
- cdp/protocol/headless_experimental/__init__.py +0 -0
- cdp/protocol/headless_experimental/events/__init__.py +0 -0
- cdp/protocol/headless_experimental/events/service.py +20 -0
- cdp/protocol/headless_experimental/events/types.py +3 -0
- cdp/protocol/headless_experimental/methods/__init__.py +0 -0
- cdp/protocol/headless_experimental/methods/service.py +32 -0
- cdp/protocol/headless_experimental/methods/types.py +22 -0
- cdp/protocol/headless_experimental/service.py +21 -0
- cdp/protocol/headless_experimental/types.py +12 -0
- cdp/protocol/heap_profiler/__init__.py +0 -0
- cdp/protocol/heap_profiler/events/__init__.py +0 -0
- cdp/protocol/heap_profiler/events/service.py +61 -0
- cdp/protocol/heap_profiler/events/types.py +18 -0
- cdp/protocol/heap_profiler/methods/__init__.py +0 -0
- cdp/protocol/heap_profiler/methods/service.py +153 -0
- cdp/protocol/heap_profiler/methods/types.py +73 -0
- cdp/protocol/heap_profiler/service.py +21 -0
- cdp/protocol/heap_profiler/types.py +32 -0
- cdp/protocol/indexed_db/__init__.py +0 -0
- cdp/protocol/indexed_db/events/__init__.py +0 -0
- cdp/protocol/indexed_db/events/service.py +20 -0
- cdp/protocol/indexed_db/events/types.py +3 -0
- cdp/protocol/indexed_db/methods/__init__.py +0 -0
- cdp/protocol/indexed_db/methods/service.py +120 -0
- cdp/protocol/indexed_db/methods/types.py +111 -0
- cdp/protocol/indexed_db/service.py +21 -0
- cdp/protocol/indexed_db/types.py +74 -0
- cdp/protocol/input/__init__.py +0 -0
- cdp/protocol/input/events/__init__.py +0 -0
- cdp/protocol/input/events/service.py +29 -0
- cdp/protocol/input/events/types.py +10 -0
- cdp/protocol/input/methods/__init__.py +0 -0
- cdp/protocol/input/methods/service.py +164 -0
- cdp/protocol/input/methods/types.py +181 -0
- cdp/protocol/input/service.py +21 -0
- cdp/protocol/input/types.py +46 -0
- cdp/protocol/inspector/__init__.py +0 -0
- cdp/protocol/inspector/events/__init__.py +0 -0
- cdp/protocol/inspector/events/service.py +53 -0
- cdp/protocol/inspector/events/types.py +13 -0
- cdp/protocol/inspector/methods/__init__.py +0 -0
- cdp/protocol/inspector/methods/service.py +43 -0
- cdp/protocol/inspector/methods/types.py +3 -0
- cdp/protocol/inspector/service.py +21 -0
- cdp/protocol/inspector/types.py +3 -0
- cdp/protocol/io/__init__.py +0 -0
- cdp/protocol/io/events/__init__.py +0 -0
- cdp/protocol/io/events/service.py +20 -0
- cdp/protocol/io/events/types.py +3 -0
- cdp/protocol/io/methods/__init__.py +0 -0
- cdp/protocol/io/methods/service.py +54 -0
- cdp/protocol/io/methods/types.py +33 -0
- cdp/protocol/io/service.py +21 -0
- cdp/protocol/io/types.py +6 -0
- cdp/protocol/layer_tree/__init__.py +0 -0
- cdp/protocol/layer_tree/events/__init__.py +0 -0
- cdp/protocol/layer_tree/events/service.py +37 -0
- cdp/protocol/layer_tree/events/types.py +18 -0
- cdp/protocol/layer_tree/methods/__init__.py +0 -0
- cdp/protocol/layer_tree/methods/service.py +120 -0
- cdp/protocol/layer_tree/methods/types.py +70 -0
- cdp/protocol/layer_tree/service.py +21 -0
- cdp/protocol/layer_tree/types.py +73 -0
- cdp/protocol/log/__init__.py +0 -0
- cdp/protocol/log/events/__init__.py +0 -0
- cdp/protocol/log/events/service.py +29 -0
- cdp/protocol/log/events/types.py +11 -0
- cdp/protocol/log/methods/__init__.py +0 -0
- cdp/protocol/log/methods/service.py +76 -0
- cdp/protocol/log/methods/types.py +14 -0
- cdp/protocol/log/service.py +21 -0
- cdp/protocol/log/types.py +40 -0
- cdp/protocol/media/__init__.py +0 -0
- cdp/protocol/media/events/__init__.py +0 -0
- cdp/protocol/media/events/service.py +61 -0
- cdp/protocol/media/events/types.py +27 -0
- cdp/protocol/media/methods/__init__.py +0 -0
- cdp/protocol/media/methods/service.py +43 -0
- cdp/protocol/media/methods/types.py +3 -0
- cdp/protocol/media/service.py +21 -0
- cdp/protocol/media/types.py +42 -0
- cdp/protocol/memory/__init__.py +0 -0
- cdp/protocol/memory/events/__init__.py +0 -0
- cdp/protocol/memory/events/service.py +20 -0
- cdp/protocol/memory/events/types.py +3 -0
- cdp/protocol/memory/methods/__init__.py +0 -0
- cdp/protocol/memory/methods/service.py +142 -0
- cdp/protocol/memory/methods/types.py +48 -0
- cdp/protocol/memory/service.py +21 -0
- cdp/protocol/memory/types.py +34 -0
- cdp/protocol/network/__init__.py +0 -0
- cdp/protocol/network/events/__init__.py +0 -0
- cdp/protocol/network/events/service.py +365 -0
- cdp/protocol/network/events/types.py +360 -0
- cdp/protocol/network/methods/__init__.py +0 -0
- cdp/protocol/network/methods/service.py +384 -0
- cdp/protocol/network/methods/types.py +252 -0
- cdp/protocol/network/service.py +21 -0
- cdp/protocol/network/types.py +691 -0
- cdp/protocol/overlay/__init__.py +0 -0
- cdp/protocol/overlay/events/__init__.py +0 -0
- cdp/protocol/overlay/events/service.py +53 -0
- cdp/protocol/overlay/events/types.py +20 -0
- cdp/protocol/overlay/methods/__init__.py +0 -0
- cdp/protocol/overlay/methods/service.py +307 -0
- cdp/protocol/overlay/methods/types.py +144 -0
- cdp/protocol/overlay/service.py +21 -0
- cdp/protocol/overlay/types.py +198 -0
- cdp/protocol/page/__init__.py +0 -0
- cdp/protocol/page/events/__init__.py +0 -0
- cdp/protocol/page/events/service.py +213 -0
- cdp/protocol/page/events/types.py +147 -0
- cdp/protocol/page/methods/__init__.py +0 -0
- cdp/protocol/page/methods/service.py +560 -0
- cdp/protocol/page/methods/types.py +346 -0
- cdp/protocol/page/service.py +21 -0
- cdp/protocol/page/types.py +379 -0
- cdp/protocol/performance/__init__.py +0 -0
- cdp/protocol/performance/events/__init__.py +0 -0
- cdp/protocol/performance/events/service.py +29 -0
- cdp/protocol/performance/events/types.py +13 -0
- cdp/protocol/performance/methods/__init__.py +0 -0
- cdp/protocol/performance/methods/service.py +54 -0
- cdp/protocol/performance/methods/types.py +18 -0
- cdp/protocol/performance/service.py +21 -0
- cdp/protocol/performance/types.py +10 -0
- cdp/protocol/performance_timeline/__init__.py +0 -0
- cdp/protocol/performance_timeline/events/__init__.py +0 -0
- cdp/protocol/performance_timeline/events/service.py +29 -0
- cdp/protocol/performance_timeline/events/types.py +10 -0
- cdp/protocol/performance_timeline/methods/__init__.py +0 -0
- cdp/protocol/performance_timeline/methods/service.py +32 -0
- cdp/protocol/performance_timeline/methods/types.py +7 -0
- cdp/protocol/performance_timeline/service.py +21 -0
- cdp/protocol/performance_timeline/types.py +46 -0
- cdp/protocol/preload/__init__.py +0 -0
- cdp/protocol/preload/events/__init__.py +0 -0
- cdp/protocol/preload/events/service.py +69 -0
- cdp/protocol/preload/events/types.py +49 -0
- cdp/protocol/preload/methods/__init__.py +0 -0
- cdp/protocol/preload/methods/service.py +43 -0
- cdp/protocol/preload/methods/types.py +3 -0
- cdp/protocol/preload/service.py +21 -0
- cdp/protocol/preload/types.py +56 -0
- cdp/protocol/profiler/__init__.py +0 -0
- cdp/protocol/profiler/events/__init__.py +0 -0
- cdp/protocol/profiler/events/service.py +45 -0
- cdp/protocol/profiler/events/types.py +30 -0
- cdp/protocol/profiler/methods/__init__.py +0 -0
- cdp/protocol/profiler/methods/service.py +120 -0
- cdp/protocol/profiler/methods/types.py +45 -0
- cdp/protocol/profiler/service.py +21 -0
- cdp/protocol/profiler/types.py +65 -0
- cdp/protocol/pwa/__init__.py +0 -0
- cdp/protocol/pwa/events/__init__.py +0 -0
- cdp/protocol/pwa/events/service.py +20 -0
- cdp/protocol/pwa/events/types.py +3 -0
- cdp/protocol/pwa/methods/__init__.py +0 -0
- cdp/protocol/pwa/methods/service.py +98 -0
- cdp/protocol/pwa/methods/types.py +43 -0
- cdp/protocol/pwa/service.py +21 -0
- cdp/protocol/pwa/types.py +15 -0
- cdp/protocol/py.typed +0 -0
- cdp/protocol/runtime/__init__.py +0 -0
- cdp/protocol/runtime/events/__init__.py +0 -0
- cdp/protocol/runtime/events/service.py +85 -0
- cdp/protocol/runtime/events/types.py +55 -0
- cdp/protocol/runtime/methods/__init__.py +0 -0
- cdp/protocol/runtime/methods/service.py +274 -0
- cdp/protocol/runtime/methods/types.py +226 -0
- cdp/protocol/runtime/service.py +21 -0
- cdp/protocol/runtime/types.py +194 -0
- cdp/protocol/security/__init__.py +0 -0
- cdp/protocol/security/events/__init__.py +0 -0
- cdp/protocol/security/events/service.py +29 -0
- cdp/protocol/security/events/types.py +11 -0
- cdp/protocol/security/methods/__init__.py +0 -0
- cdp/protocol/security/methods/service.py +54 -0
- cdp/protocol/security/methods/types.py +9 -0
- cdp/protocol/security/service.py +21 -0
- cdp/protocol/security/types.py +102 -0
- cdp/protocol/service_worker/__init__.py +0 -0
- cdp/protocol/service_worker/events/__init__.py +0 -0
- cdp/protocol/service_worker/events/service.py +45 -0
- cdp/protocol/service_worker/events/types.py +16 -0
- cdp/protocol/service_worker/methods/__init__.py +0 -0
- cdp/protocol/service_worker/methods/service.py +153 -0
- cdp/protocol/service_worker/methods/types.py +36 -0
- cdp/protocol/service_worker/service.py +21 -0
- cdp/protocol/service_worker/types.py +38 -0
- cdp/protocol/storage/__init__.py +0 -0
- cdp/protocol/storage/events/__init__.py +0 -0
- cdp/protocol/storage/events/service.py +141 -0
- cdp/protocol/storage/events/types.py +139 -0
- cdp/protocol/storage/methods/__init__.py +0 -0
- cdp/protocol/storage/methods/service.py +428 -0
- cdp/protocol/storage/methods/types.py +184 -0
- cdp/protocol/storage/service.py +21 -0
- cdp/protocol/storage/types.py +236 -0
- cdp/protocol/system_info/__init__.py +0 -0
- cdp/protocol/system_info/events/__init__.py +0 -0
- cdp/protocol/system_info/events/service.py +20 -0
- cdp/protocol/system_info/events/types.py +3 -0
- cdp/protocol/system_info/methods/__init__.py +0 -0
- cdp/protocol/system_info/methods/service.py +54 -0
- cdp/protocol/system_info/methods/types.py +27 -0
- cdp/protocol/system_info/service.py +21 -0
- cdp/protocol/system_info/types.py +71 -0
- cdp/protocol/target/__init__.py +0 -0
- cdp/protocol/target/events/__init__.py +0 -0
- cdp/protocol/target/events/service.py +77 -0
- cdp/protocol/target/events/types.py +38 -0
- cdp/protocol/target/methods/__init__.py +0 -0
- cdp/protocol/target/methods/service.py +219 -0
- cdp/protocol/target/methods/types.py +148 -0
- cdp/protocol/target/service.py +21 -0
- cdp/protocol/target/types.py +44 -0
- cdp/protocol/tethering/__init__.py +0 -0
- cdp/protocol/tethering/events/__init__.py +0 -0
- cdp/protocol/tethering/events/service.py +29 -0
- cdp/protocol/tethering/events/types.py +9 -0
- cdp/protocol/tethering/methods/__init__.py +0 -0
- cdp/protocol/tethering/methods/service.py +43 -0
- cdp/protocol/tethering/methods/types.py +10 -0
- cdp/protocol/tethering/service.py +21 -0
- cdp/protocol/tethering/types.py +3 -0
- cdp/protocol/tracing/__init__.py +0 -0
- cdp/protocol/tracing/events/__init__.py +0 -0
- cdp/protocol/tracing/events/service.py +45 -0
- cdp/protocol/tracing/events/types.py +28 -0
- cdp/protocol/tracing/methods/__init__.py +0 -0
- cdp/protocol/tracing/methods/service.py +87 -0
- cdp/protocol/tracing/methods/types.py +54 -0
- cdp/protocol/tracing/service.py +21 -0
- cdp/protocol/tracing/types.py +34 -0
- cdp/protocol/web_audio/__init__.py +0 -0
- cdp/protocol/web_audio/events/__init__.py +0 -0
- cdp/protocol/web_audio/events/service.py +125 -0
- cdp/protocol/web_audio/events/types.py +56 -0
- cdp/protocol/web_audio/methods/__init__.py +0 -0
- cdp/protocol/web_audio/methods/service.py +54 -0
- cdp/protocol/web_audio/methods/types.py +17 -0
- cdp/protocol/web_audio/service.py +21 -0
- cdp/protocol/web_audio/types.py +66 -0
- cdp/protocol/web_authn/__init__.py +0 -0
- cdp/protocol/web_authn/events/__init__.py +0 -0
- cdp/protocol/web_authn/events/service.py +53 -0
- cdp/protocol/web_authn/events/types.py +21 -0
- cdp/protocol/web_authn/methods/__init__.py +0 -0
- cdp/protocol/web_authn/methods/service.py +164 -0
- cdp/protocol/web_authn/methods/types.py +61 -0
- cdp/protocol/web_authn/service.py +21 -0
- cdp/protocol/web_authn/types.py +54 -0
- cdp/py.typed +0 -0
- cdp/service.py +184 -0
- chromedeveloperprotocol_client-0.1.0.dist-info/METADATA +15 -0
- chromedeveloperprotocol_client-0.1.0.dist-info/RECORD +476 -0
- chromedeveloperprotocol_client-0.1.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
"""CDP CSS Methods Types"""
|
|
2
|
+
|
|
3
|
+
from typing import TypedDict, NotRequired, Required, Literal, Any, Dict, Union, Optional, List, Set, Tuple
|
|
4
|
+
|
|
5
|
+
from typing import TYPE_CHECKING
|
|
6
|
+
if TYPE_CHECKING:
|
|
7
|
+
from cdp.protocol.css.types import CSSAnimationStyle
|
|
8
|
+
from cdp.protocol.css.types import CSSAtRule
|
|
9
|
+
from cdp.protocol.css.types import CSSComputedStyleProperty
|
|
10
|
+
from cdp.protocol.css.types import CSSContainerQuery
|
|
11
|
+
from cdp.protocol.css.types import CSSFunctionRule
|
|
12
|
+
from cdp.protocol.css.types import CSSKeyframesRule
|
|
13
|
+
from cdp.protocol.css.types import CSSLayerData
|
|
14
|
+
from cdp.protocol.css.types import CSSMedia
|
|
15
|
+
from cdp.protocol.css.types import CSSPositionTryRule
|
|
16
|
+
from cdp.protocol.css.types import CSSProperty
|
|
17
|
+
from cdp.protocol.css.types import CSSPropertyRegistration
|
|
18
|
+
from cdp.protocol.css.types import CSSPropertyRule
|
|
19
|
+
from cdp.protocol.css.types import CSSRule
|
|
20
|
+
from cdp.protocol.css.types import CSSScope
|
|
21
|
+
from cdp.protocol.css.types import CSSStyle
|
|
22
|
+
from cdp.protocol.css.types import CSSSupports
|
|
23
|
+
from cdp.protocol.css.types import ComputedStyleExtraFields
|
|
24
|
+
from cdp.protocol.css.types import InheritedAnimatedStyleEntry
|
|
25
|
+
from cdp.protocol.css.types import InheritedPseudoElementMatches
|
|
26
|
+
from cdp.protocol.css.types import InheritedStyleEntry
|
|
27
|
+
from cdp.protocol.css.types import PlatformFontUsage
|
|
28
|
+
from cdp.protocol.css.types import PseudoElementMatches
|
|
29
|
+
from cdp.protocol.css.types import RuleMatch
|
|
30
|
+
from cdp.protocol.css.types import RuleUsage
|
|
31
|
+
from cdp.protocol.css.types import SelectorList
|
|
32
|
+
from cdp.protocol.css.types import SourceRange
|
|
33
|
+
from cdp.protocol.css.types import StyleDeclarationEdit
|
|
34
|
+
from cdp.protocol.css.types import Value
|
|
35
|
+
from cdp.protocol.dom.types import NodeId
|
|
36
|
+
from cdp.protocol.dom.types import PseudoType
|
|
37
|
+
from cdp.protocol.dom.types import StyleSheetId
|
|
38
|
+
from cdp.protocol.page.types import FrameId
|
|
39
|
+
|
|
40
|
+
class addRuleParameters(TypedDict, total=True):
|
|
41
|
+
styleSheetId: 'StyleSheetId'
|
|
42
|
+
"""The css style sheet identifier where a new rule should be inserted."""
|
|
43
|
+
ruleText: 'str'
|
|
44
|
+
"""The text of a new rule."""
|
|
45
|
+
location: 'SourceRange'
|
|
46
|
+
"""Text position of a new rule in the target style sheet."""
|
|
47
|
+
nodeForPropertySyntaxValidation: NotRequired['NodeId']
|
|
48
|
+
"""NodeId for the DOM node in whose context custom property declarations for registered properties should be validated. If omitted, declarations in the new rule text can only be validated statically, which may produce incorrect results if the declaration contains a var() for example."""
|
|
49
|
+
class collectClassNamesParameters(TypedDict, total=True):
|
|
50
|
+
styleSheetId: 'StyleSheetId'
|
|
51
|
+
class createStyleSheetParameters(TypedDict, total=True):
|
|
52
|
+
frameId: 'FrameId'
|
|
53
|
+
"""Identifier of the frame where "via-inspector" stylesheet should be created."""
|
|
54
|
+
force: NotRequired['bool']
|
|
55
|
+
"""If true, creates a new stylesheet for every call. If false, returns a stylesheet previously created by a call with force=false for the frame's document if it exists or creates a new stylesheet (default: false)."""
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
class forcePseudoStateParameters(TypedDict, total=True):
|
|
59
|
+
nodeId: 'NodeId'
|
|
60
|
+
"""The element id for which to force the pseudo state."""
|
|
61
|
+
forcedPseudoClasses: 'List[str]'
|
|
62
|
+
"""Element pseudo classes to force when computing the element's style."""
|
|
63
|
+
class forceStartingStyleParameters(TypedDict, total=True):
|
|
64
|
+
nodeId: 'NodeId'
|
|
65
|
+
"""The element id for which to force the starting-style state."""
|
|
66
|
+
forced: 'bool'
|
|
67
|
+
"""Boolean indicating if this is on or off."""
|
|
68
|
+
class getBackgroundColorsParameters(TypedDict, total=True):
|
|
69
|
+
nodeId: 'NodeId'
|
|
70
|
+
"""Id of the node to get background colors for."""
|
|
71
|
+
class getComputedStyleForNodeParameters(TypedDict, total=True):
|
|
72
|
+
nodeId: 'NodeId'
|
|
73
|
+
class resolveValuesParameters(TypedDict, total=True):
|
|
74
|
+
values: 'List[str]'
|
|
75
|
+
"""Cascade-dependent keywords (revert/revert-layer) do not work."""
|
|
76
|
+
nodeId: 'NodeId'
|
|
77
|
+
"""Id of the node in whose context the expression is evaluated"""
|
|
78
|
+
propertyName: NotRequired['str']
|
|
79
|
+
"""Only longhands and custom property names are accepted."""
|
|
80
|
+
pseudoType: NotRequired['PseudoType']
|
|
81
|
+
"""Pseudo element type, only works for pseudo elements that generate elements in the tree, such as ::before and ::after."""
|
|
82
|
+
pseudoIdentifier: NotRequired['str']
|
|
83
|
+
"""Pseudo element custom ident."""
|
|
84
|
+
class getLonghandPropertiesParameters(TypedDict, total=True):
|
|
85
|
+
shorthandName: 'str'
|
|
86
|
+
value: 'str'
|
|
87
|
+
class getInlineStylesForNodeParameters(TypedDict, total=True):
|
|
88
|
+
nodeId: 'NodeId'
|
|
89
|
+
class getAnimatedStylesForNodeParameters(TypedDict, total=True):
|
|
90
|
+
nodeId: 'NodeId'
|
|
91
|
+
class getMatchedStylesForNodeParameters(TypedDict, total=True):
|
|
92
|
+
nodeId: 'NodeId'
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
class getPlatformFontsForNodeParameters(TypedDict, total=True):
|
|
96
|
+
nodeId: 'NodeId'
|
|
97
|
+
class getStyleSheetTextParameters(TypedDict, total=True):
|
|
98
|
+
styleSheetId: 'StyleSheetId'
|
|
99
|
+
class getLayersForNodeParameters(TypedDict, total=True):
|
|
100
|
+
nodeId: 'NodeId'
|
|
101
|
+
class getLocationForSelectorParameters(TypedDict, total=True):
|
|
102
|
+
styleSheetId: 'StyleSheetId'
|
|
103
|
+
selectorText: 'str'
|
|
104
|
+
class trackComputedStyleUpdatesForNodeParameters(TypedDict, total=False):
|
|
105
|
+
nodeId: NotRequired['NodeId']
|
|
106
|
+
class trackComputedStyleUpdatesParameters(TypedDict, total=True):
|
|
107
|
+
propertiesToTrack: 'List[CSSComputedStyleProperty]'
|
|
108
|
+
|
|
109
|
+
class setEffectivePropertyValueForNodeParameters(TypedDict, total=True):
|
|
110
|
+
nodeId: 'NodeId'
|
|
111
|
+
"""The element id for which to set property."""
|
|
112
|
+
propertyName: 'str'
|
|
113
|
+
value: 'str'
|
|
114
|
+
class setPropertyRulePropertyNameParameters(TypedDict, total=True):
|
|
115
|
+
styleSheetId: 'StyleSheetId'
|
|
116
|
+
range: 'SourceRange'
|
|
117
|
+
propertyName: 'str'
|
|
118
|
+
class setKeyframeKeyParameters(TypedDict, total=True):
|
|
119
|
+
styleSheetId: 'StyleSheetId'
|
|
120
|
+
range: 'SourceRange'
|
|
121
|
+
keyText: 'str'
|
|
122
|
+
class setMediaTextParameters(TypedDict, total=True):
|
|
123
|
+
styleSheetId: 'StyleSheetId'
|
|
124
|
+
range: 'SourceRange'
|
|
125
|
+
text: 'str'
|
|
126
|
+
class setContainerQueryTextParameters(TypedDict, total=True):
|
|
127
|
+
styleSheetId: 'StyleSheetId'
|
|
128
|
+
range: 'SourceRange'
|
|
129
|
+
text: 'str'
|
|
130
|
+
class setSupportsTextParameters(TypedDict, total=True):
|
|
131
|
+
styleSheetId: 'StyleSheetId'
|
|
132
|
+
range: 'SourceRange'
|
|
133
|
+
text: 'str'
|
|
134
|
+
class setScopeTextParameters(TypedDict, total=True):
|
|
135
|
+
styleSheetId: 'StyleSheetId'
|
|
136
|
+
range: 'SourceRange'
|
|
137
|
+
text: 'str'
|
|
138
|
+
class setRuleSelectorParameters(TypedDict, total=True):
|
|
139
|
+
styleSheetId: 'StyleSheetId'
|
|
140
|
+
range: 'SourceRange'
|
|
141
|
+
selector: 'str'
|
|
142
|
+
class setStyleSheetTextParameters(TypedDict, total=True):
|
|
143
|
+
styleSheetId: 'StyleSheetId'
|
|
144
|
+
text: 'str'
|
|
145
|
+
class setStyleTextsParameters(TypedDict, total=True):
|
|
146
|
+
edits: 'List[StyleDeclarationEdit]'
|
|
147
|
+
nodeForPropertySyntaxValidation: NotRequired['NodeId']
|
|
148
|
+
"""NodeId for the DOM node in whose context custom property declarations for registered properties should be validated. If omitted, declarations in the new rule text can only be validated statically, which may produce incorrect results if the declaration contains a var() for example."""
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
class setLocalFontsEnabledParameters(TypedDict, total=True):
|
|
153
|
+
enabled: 'bool'
|
|
154
|
+
"""Whether rendering of local fonts is enabled."""
|
|
155
|
+
class addRuleReturns(TypedDict):
|
|
156
|
+
rule: 'CSSRule'
|
|
157
|
+
"""The newly created rule."""
|
|
158
|
+
class collectClassNamesReturns(TypedDict):
|
|
159
|
+
classNames: 'List[str]'
|
|
160
|
+
"""Class name list."""
|
|
161
|
+
class createStyleSheetReturns(TypedDict):
|
|
162
|
+
styleSheetId: 'StyleSheetId'
|
|
163
|
+
"""Identifier of the created "via-inspector" stylesheet."""
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
class getBackgroundColorsReturns(TypedDict):
|
|
169
|
+
backgroundColors: 'List[str]'
|
|
170
|
+
"""The range of background colors behind this element, if it contains any visible text. If no visible text is present, this will be undefined. In the case of a flat background color, this will consist of simply that color. In the case of a gradient, this will consist of each of the color stops. For anything more complicated, this will be an empty array. Images will be ignored (as if the image had failed to load)."""
|
|
171
|
+
computedFontSize: 'str'
|
|
172
|
+
"""The computed font size for this node, as a CSS computed value string (e.g. '12px')."""
|
|
173
|
+
computedFontWeight: 'str'
|
|
174
|
+
"""The computed font weight for this node, as a CSS computed value string (e.g. 'normal' or '100')."""
|
|
175
|
+
class getComputedStyleForNodeReturns(TypedDict):
|
|
176
|
+
computedStyle: 'List[CSSComputedStyleProperty]'
|
|
177
|
+
"""Computed style for the specified DOM node."""
|
|
178
|
+
extraFields: 'ComputedStyleExtraFields'
|
|
179
|
+
"""A list of non-standard "extra fields" which blink stores alongside each computed style."""
|
|
180
|
+
class resolveValuesReturns(TypedDict):
|
|
181
|
+
results: 'List[str]'
|
|
182
|
+
class getLonghandPropertiesReturns(TypedDict):
|
|
183
|
+
longhandProperties: 'List[CSSProperty]'
|
|
184
|
+
class getInlineStylesForNodeReturns(TypedDict):
|
|
185
|
+
inlineStyle: 'CSSStyle'
|
|
186
|
+
"""Inline style for the specified DOM node."""
|
|
187
|
+
attributesStyle: 'CSSStyle'
|
|
188
|
+
"""Attribute-defined element style (e.g. resulting from "width=20 height=100%")."""
|
|
189
|
+
class getAnimatedStylesForNodeReturns(TypedDict):
|
|
190
|
+
animationStyles: 'List[CSSAnimationStyle]'
|
|
191
|
+
"""Styles coming from animations."""
|
|
192
|
+
transitionsStyle: 'CSSStyle'
|
|
193
|
+
"""Style coming from transitions."""
|
|
194
|
+
inherited: 'List[InheritedAnimatedStyleEntry]'
|
|
195
|
+
"""Inherited style entries for animationsStyle and transitionsStyle from the inheritance chain of the element."""
|
|
196
|
+
class getMatchedStylesForNodeReturns(TypedDict):
|
|
197
|
+
inlineStyle: 'CSSStyle'
|
|
198
|
+
"""Inline style for the specified DOM node."""
|
|
199
|
+
attributesStyle: 'CSSStyle'
|
|
200
|
+
"""Attribute-defined element style (e.g. resulting from "width=20 height=100%")."""
|
|
201
|
+
matchedCSSRules: 'List[RuleMatch]'
|
|
202
|
+
"""CSS rules matching this node, from all applicable stylesheets."""
|
|
203
|
+
pseudoElements: 'List[PseudoElementMatches]'
|
|
204
|
+
"""Pseudo style matches for this node."""
|
|
205
|
+
inherited: 'List[InheritedStyleEntry]'
|
|
206
|
+
"""A chain of inherited styles (from the immediate node parent up to the DOM tree root)."""
|
|
207
|
+
inheritedPseudoElements: 'List[InheritedPseudoElementMatches]'
|
|
208
|
+
"""A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree root)."""
|
|
209
|
+
cssKeyframesRules: 'List[CSSKeyframesRule]'
|
|
210
|
+
"""A list of CSS keyframed animations matching this node."""
|
|
211
|
+
cssPositionTryRules: 'List[CSSPositionTryRule]'
|
|
212
|
+
"""A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property."""
|
|
213
|
+
activePositionFallbackIndex: 'int'
|
|
214
|
+
"""Index of the active fallback in the applied position-try-fallback property, will not be set if there is no active position-try fallback."""
|
|
215
|
+
cssPropertyRules: 'List[CSSPropertyRule]'
|
|
216
|
+
"""A list of CSS at-property rules matching this node."""
|
|
217
|
+
cssPropertyRegistrations: 'List[CSSPropertyRegistration]'
|
|
218
|
+
"""A list of CSS property registrations matching this node."""
|
|
219
|
+
cssAtRules: 'List[CSSAtRule]'
|
|
220
|
+
"""A list of simple @rules matching this node or its pseudo-elements."""
|
|
221
|
+
parentLayoutNodeId: 'NodeId'
|
|
222
|
+
"""Id of the first parent element that does not have display: contents."""
|
|
223
|
+
cssFunctionRules: 'List[CSSFunctionRule]'
|
|
224
|
+
"""A list of CSS at-function rules referenced by styles of this node."""
|
|
225
|
+
class getEnvironmentVariablesReturns(TypedDict):
|
|
226
|
+
environmentVariables: 'Dict[str, Any]'
|
|
227
|
+
class getMediaQueriesReturns(TypedDict):
|
|
228
|
+
medias: 'List[CSSMedia]'
|
|
229
|
+
class getPlatformFontsForNodeReturns(TypedDict):
|
|
230
|
+
fonts: 'List[PlatformFontUsage]'
|
|
231
|
+
"""Usage statistics for every employed platform font."""
|
|
232
|
+
class getStyleSheetTextReturns(TypedDict):
|
|
233
|
+
text: 'str'
|
|
234
|
+
"""The stylesheet text."""
|
|
235
|
+
class getLayersForNodeReturns(TypedDict):
|
|
236
|
+
rootLayer: 'CSSLayerData'
|
|
237
|
+
class getLocationForSelectorReturns(TypedDict):
|
|
238
|
+
ranges: 'List[SourceRange]'
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
class takeComputedStyleUpdatesReturns(TypedDict):
|
|
242
|
+
nodeIds: 'List[NodeId]'
|
|
243
|
+
"""The list of node Ids that have their tracked computed styles updated."""
|
|
244
|
+
|
|
245
|
+
class setPropertyRulePropertyNameReturns(TypedDict):
|
|
246
|
+
propertyName: 'Value'
|
|
247
|
+
"""The resulting key text after modification."""
|
|
248
|
+
class setKeyframeKeyReturns(TypedDict):
|
|
249
|
+
keyText: 'Value'
|
|
250
|
+
"""The resulting key text after modification."""
|
|
251
|
+
class setMediaTextReturns(TypedDict):
|
|
252
|
+
media: 'CSSMedia'
|
|
253
|
+
"""The resulting CSS media rule after modification."""
|
|
254
|
+
class setContainerQueryTextReturns(TypedDict):
|
|
255
|
+
containerQuery: 'CSSContainerQuery'
|
|
256
|
+
"""The resulting CSS container query rule after modification."""
|
|
257
|
+
class setSupportsTextReturns(TypedDict):
|
|
258
|
+
supports: 'CSSSupports'
|
|
259
|
+
"""The resulting CSS Supports rule after modification."""
|
|
260
|
+
class setScopeTextReturns(TypedDict):
|
|
261
|
+
scope: 'CSSScope'
|
|
262
|
+
"""The resulting CSS Scope rule after modification."""
|
|
263
|
+
class setRuleSelectorReturns(TypedDict):
|
|
264
|
+
selectorList: 'SelectorList'
|
|
265
|
+
"""The resulting selector list after modification."""
|
|
266
|
+
class setStyleSheetTextReturns(TypedDict):
|
|
267
|
+
sourceMapURL: 'str'
|
|
268
|
+
"""URL of source map associated with script (if any)."""
|
|
269
|
+
class setStyleTextsReturns(TypedDict):
|
|
270
|
+
styles: 'List[CSSStyle]'
|
|
271
|
+
"""The resulting styles after modification."""
|
|
272
|
+
|
|
273
|
+
class stopRuleUsageTrackingReturns(TypedDict):
|
|
274
|
+
ruleUsage: 'List[RuleUsage]'
|
|
275
|
+
class takeCoverageDeltaReturns(TypedDict):
|
|
276
|
+
coverage: 'List[RuleUsage]'
|
|
277
|
+
timestamp: 'float'
|
|
278
|
+
"""Monotonically increasing time, in seconds."""
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""CDP CSS Domain"""
|
|
2
|
+
from typing import TYPE_CHECKING
|
|
3
|
+
from .methods.service import CSSMethods
|
|
4
|
+
from .events.service import CSSEvents
|
|
5
|
+
|
|
6
|
+
if TYPE_CHECKING:
|
|
7
|
+
from ...service import Client
|
|
8
|
+
|
|
9
|
+
class CSS(CSSMethods, CSSEvents):
|
|
10
|
+
"""
|
|
11
|
+
This domain exposes CSS read/write operations. All CSS objects (stylesheets, rules, and styles) have an associated `id` used in subsequent operations on the related object. Each object type has a specific `id` structure, and those are not interchangeable between objects of different kinds. CSS objects can be loaded using the `get*ForNode()` calls (which accept a DOM node id). A client can also keep track of stylesheets via the `styleSheetAdded`/`styleSheetRemoved` events and subsequently load the required stylesheet contents using the `getStyleSheet[Text]()` methods.
|
|
12
|
+
"""
|
|
13
|
+
def __init__(self, client: "Client"):
|
|
14
|
+
"""
|
|
15
|
+
Initialize the CSS domain.
|
|
16
|
+
|
|
17
|
+
Args:
|
|
18
|
+
client ("Client"): The parent CDP client instance.
|
|
19
|
+
"""
|
|
20
|
+
CSSMethods.__init__(self, client)
|
|
21
|
+
CSSEvents.__init__(self, client)
|