selenium-devtools 0.97.0 → 0.99.1
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.
- checksums.yaml +4 -4
- data/lib/selenium/devtools/README.md +9 -2
- data/lib/selenium/devtools/{v95 → v98}/accessibility.rb +18 -2
- data/lib/selenium/devtools/{v95 → v98}/animation.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/audits.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/background_service.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/browser.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/cache_storage.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/cast.rb +7 -2
- data/lib/selenium/devtools/{v95 → v98}/console.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/css.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/database.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/debugger.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/device_orientation.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/dom.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/dom_debugger.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/dom_snapshot.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/dom_storage.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/emulation.rb +2 -2
- data/lib/selenium/devtools/v98/event_breakpoints.rb +48 -0
- data/lib/selenium/devtools/{v95 → v98}/fetch.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/headless_experimental.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/heap_profiler.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/indexed_db.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/input.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/inspector.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/io.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/layer_tree.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/log.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/media.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/memory.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/network.rb +6 -4
- data/lib/selenium/devtools/{v95 → v98}/overlay.rb +7 -2
- data/lib/selenium/devtools/{v95 → v98}/page.rb +7 -7
- data/lib/selenium/devtools/{v95 → v98}/performance.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/performance_timeline.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/profiler.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/runtime.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/schema.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/security.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/service_worker.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/storage.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/system_info.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/target.rb +5 -4
- data/lib/selenium/devtools/{v95 → v98}/tethering.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/tracing.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/web_audio.rb +2 -2
- data/lib/selenium/devtools/{v95 → v98}/web_authn.rb +2 -2
- data/lib/selenium/devtools/v98.rb +1 -0
- data/lib/selenium/devtools/v99/accessibility.rb +92 -0
- data/lib/selenium/devtools/v99/animation.rb +94 -0
- data/lib/selenium/devtools/v99/audits.rb +62 -0
- data/lib/selenium/devtools/{v95/application_cache.rb → v99/background_service.rb} +20 -17
- data/lib/selenium/devtools/v99/browser.rb +135 -0
- data/lib/selenium/devtools/v99/cache_storage.rb +69 -0
- data/lib/selenium/devtools/v99/cast.rb +71 -0
- data/lib/selenium/devtools/v99/console.rb +53 -0
- data/lib/selenium/devtools/v99/css.rb +182 -0
- data/lib/selenium/devtools/v99/database.rb +60 -0
- data/lib/selenium/devtools/v99/debugger.rb +220 -0
- data/lib/selenium/devtools/v99/device_orientation.rb +49 -0
- data/lib/selenium/devtools/v99/dom.rb +334 -0
- data/lib/selenium/devtools/v99/dom_debugger.rb +94 -0
- data/lib/selenium/devtools/v99/dom_snapshot.rb +63 -0
- data/lib/selenium/devtools/v99/dom_storage.rb +75 -0
- data/lib/selenium/devtools/v99/emulation.rb +197 -0
- data/lib/selenium/devtools/v99/event_breakpoints.rb +48 -0
- data/lib/selenium/devtools/v99/fetch.rb +103 -0
- data/lib/selenium/devtools/v99/headless_experimental.rb +57 -0
- data/lib/selenium/devtools/v99/heap_profiler.rb +105 -0
- data/lib/selenium/devtools/v99/indexed_db.rb +96 -0
- data/lib/selenium/devtools/v99/input.rb +168 -0
- data/lib/selenium/devtools/v99/inspector.rb +51 -0
- data/lib/selenium/devtools/v99/io.rb +55 -0
- data/lib/selenium/devtools/v99/layer_tree.rb +91 -0
- data/lib/selenium/devtools/v99/log.rb +62 -0
- data/lib/selenium/devtools/v99/media.rb +53 -0
- data/lib/selenium/devtools/v99/memory.rb +82 -0
- data/lib/selenium/devtools/v99/network.rb +264 -0
- data/lib/selenium/devtools/v99/overlay.rb +202 -0
- data/lib/selenium/devtools/v99/page.rb +394 -0
- data/lib/selenium/devtools/v99/performance.rb +59 -0
- data/lib/selenium/devtools/v99/performance_timeline.rb +46 -0
- data/lib/selenium/devtools/v99/profiler.rb +95 -0
- data/lib/selenium/devtools/v99/runtime.rb +199 -0
- data/lib/selenium/devtools/v99/schema.rb +42 -0
- data/lib/selenium/devtools/v99/security.rb +67 -0
- data/lib/selenium/devtools/v99/service_worker.rb +112 -0
- data/lib/selenium/devtools/v99/storage.rb +118 -0
- data/lib/selenium/devtools/v99/system_info.rb +46 -0
- data/lib/selenium/devtools/v99/target.rb +146 -0
- data/lib/selenium/devtools/v99/tethering.rb +51 -0
- data/lib/selenium/devtools/v99/tracing.rb +75 -0
- data/lib/selenium/devtools/v99/web_audio.rb +66 -0
- data/lib/selenium/devtools/v99/web_authn.rb +96 -0
- data/lib/selenium/devtools/v99.rb +1 -0
- data/lib/selenium/devtools/version.rb +1 -1
- metadata +96 -49
- data/lib/selenium/devtools/v95.rb +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1343106dc55ed45923d8fa8fbc6e425cded0efe4603407571251b4a79e0acc2d
|
|
4
|
+
data.tar.gz: 76008d6ba435572000ba3b6eed52d9bd71ac836a8698aaa471000a258fb126f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cb823d90c301d36faa2597e542959553dcc81f4af7317f10778f544dc4d45aa489513beab36564fbdfc1c18a70dd027d6dba64f7e8c82fd9a41bf9160dba146
|
|
7
|
+
data.tar.gz: e19fed88666f5c48634fe9715a51da524ce3016ba429d88b51ee1eb3102f1566de57e8271e846c0ba10730bca36fff2442f6c438f8c2cd6b3766e07ea9f6001a
|
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
### Adding support for new Chromium DevTools Protocol to the Ruby bindings
|
|
2
2
|
|
|
3
|
-
* Add latest version number to
|
|
4
|
-
* Update
|
|
3
|
+
* Add the latest version number to `/rb/BUILD.bazel`
|
|
4
|
+
* Update `/rb/lib/selenium/devtools/version.rb` with the latest version number
|
|
5
5
|
|
|
6
6
|
### Releasing selenium-devtools gem
|
|
7
7
|
|
|
8
|
+
```shell
|
|
9
|
+
bazel build //rb:selenium-devtools
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
```shell
|
|
13
|
+
gem push bazel-bin/rb/selenium-devtools.gem
|
|
14
|
+
```
|
|
@@ -20,8 +20,12 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Accessibility
|
|
25
|
+
EVENTS = {
|
|
26
|
+
load_complete: 'loadComplete',
|
|
27
|
+
nodes_updated: 'nodesUpdated',
|
|
28
|
+
}.freeze
|
|
25
29
|
|
|
26
30
|
def initialize(devtools)
|
|
27
31
|
@devtools = devtools
|
|
@@ -55,6 +59,18 @@ module Selenium
|
|
|
55
59
|
frameId: frame_id)
|
|
56
60
|
end
|
|
57
61
|
|
|
62
|
+
def get_root_ax_node(frame_id: nil)
|
|
63
|
+
@devtools.send_cmd('Accessibility.getRootAXNode',
|
|
64
|
+
frameId: frame_id)
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
def get_ax_node_and_ancestors(node_id: nil, backend_node_id: nil, object_id: nil)
|
|
68
|
+
@devtools.send_cmd('Accessibility.getAXNodeAndAncestors',
|
|
69
|
+
nodeId: node_id,
|
|
70
|
+
backendNodeId: backend_node_id,
|
|
71
|
+
objectId: object_id)
|
|
72
|
+
end
|
|
73
|
+
|
|
58
74
|
def get_child_ax_nodes(id:, frame_id: nil)
|
|
59
75
|
@devtools.send_cmd('Accessibility.getChildAXNodes',
|
|
60
76
|
id: id,
|
|
@@ -71,6 +87,6 @@ module Selenium
|
|
|
71
87
|
end
|
|
72
88
|
|
|
73
89
|
end # Accessibility
|
|
74
|
-
end #
|
|
90
|
+
end # V98
|
|
75
91
|
end # DevTools
|
|
76
92
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Animation
|
|
25
25
|
EVENTS = {
|
|
26
26
|
animation_canceled: 'animationCanceled',
|
|
@@ -89,6 +89,6 @@ module Selenium
|
|
|
89
89
|
end
|
|
90
90
|
|
|
91
91
|
end # Animation
|
|
92
|
-
end #
|
|
92
|
+
end # V98
|
|
93
93
|
end # DevTools
|
|
94
94
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Audits
|
|
25
25
|
EVENTS = {
|
|
26
26
|
issue_added: 'issueAdded',
|
|
@@ -57,6 +57,6 @@ module Selenium
|
|
|
57
57
|
end
|
|
58
58
|
|
|
59
59
|
end # Audits
|
|
60
|
-
end #
|
|
60
|
+
end # V98
|
|
61
61
|
end # DevTools
|
|
62
62
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class BackgroundService
|
|
25
25
|
EVENTS = {
|
|
26
26
|
recording_state_changed: 'recordingStateChanged',
|
|
@@ -58,6 +58,6 @@ module Selenium
|
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
end # BackgroundService
|
|
61
|
-
end #
|
|
61
|
+
end # V98
|
|
62
62
|
end # DevTools
|
|
63
63
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Browser
|
|
25
25
|
EVENTS = {
|
|
26
26
|
download_will_begin: 'downloadWillBegin',
|
|
@@ -130,6 +130,6 @@ module Selenium
|
|
|
130
130
|
end
|
|
131
131
|
|
|
132
132
|
end # Browser
|
|
133
|
-
end #
|
|
133
|
+
end # V98
|
|
134
134
|
end # DevTools
|
|
135
135
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class CacheStorage
|
|
25
25
|
|
|
26
26
|
def initialize(devtools)
|
|
@@ -64,6 +64,6 @@ module Selenium
|
|
|
64
64
|
end
|
|
65
65
|
|
|
66
66
|
end # CacheStorage
|
|
67
|
-
end #
|
|
67
|
+
end # V98
|
|
68
68
|
end # DevTools
|
|
69
69
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Cast
|
|
25
25
|
EVENTS = {
|
|
26
26
|
sinks_updated: 'sinksUpdated',
|
|
@@ -50,6 +50,11 @@ module Selenium
|
|
|
50
50
|
sinkName: sink_name)
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
+
def start_desktop_mirroring(sink_name:)
|
|
54
|
+
@devtools.send_cmd('Cast.startDesktopMirroring',
|
|
55
|
+
sinkName: sink_name)
|
|
56
|
+
end
|
|
57
|
+
|
|
53
58
|
def start_tab_mirroring(sink_name:)
|
|
54
59
|
@devtools.send_cmd('Cast.startTabMirroring',
|
|
55
60
|
sinkName: sink_name)
|
|
@@ -61,6 +66,6 @@ module Selenium
|
|
|
61
66
|
end
|
|
62
67
|
|
|
63
68
|
end # Cast
|
|
64
|
-
end #
|
|
69
|
+
end # V98
|
|
65
70
|
end # DevTools
|
|
66
71
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Console
|
|
25
25
|
EVENTS = {
|
|
26
26
|
message_added: 'messageAdded',
|
|
@@ -48,6 +48,6 @@ module Selenium
|
|
|
48
48
|
end
|
|
49
49
|
|
|
50
50
|
end # Console
|
|
51
|
-
end #
|
|
51
|
+
end # V98
|
|
52
52
|
end # DevTools
|
|
53
53
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class CSS
|
|
25
25
|
EVENTS = {
|
|
26
26
|
fonts_updated: 'fontsUpdated',
|
|
@@ -177,6 +177,6 @@ module Selenium
|
|
|
177
177
|
end
|
|
178
178
|
|
|
179
179
|
end # CSS
|
|
180
|
-
end #
|
|
180
|
+
end # V98
|
|
181
181
|
end # DevTools
|
|
182
182
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Database
|
|
25
25
|
EVENTS = {
|
|
26
26
|
add_database: 'addDatabase',
|
|
@@ -55,6 +55,6 @@ module Selenium
|
|
|
55
55
|
end
|
|
56
56
|
|
|
57
57
|
end # Database
|
|
58
|
-
end #
|
|
58
|
+
end # V98
|
|
59
59
|
end # DevTools
|
|
60
60
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Debugger
|
|
25
25
|
EVENTS = {
|
|
26
26
|
breakpoint_resolved: 'breakpointResolved',
|
|
@@ -215,6 +215,6 @@ module Selenium
|
|
|
215
215
|
end
|
|
216
216
|
|
|
217
217
|
end # Debugger
|
|
218
|
-
end #
|
|
218
|
+
end # V98
|
|
219
219
|
end # DevTools
|
|
220
220
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class DeviceOrientation
|
|
25
25
|
|
|
26
26
|
def initialize(devtools)
|
|
@@ -44,6 +44,6 @@ module Selenium
|
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
end # DeviceOrientation
|
|
47
|
-
end #
|
|
47
|
+
end # V98
|
|
48
48
|
end # DevTools
|
|
49
49
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class DOM
|
|
25
25
|
EVENTS = {
|
|
26
26
|
attribute_modified: 'attributeModified',
|
|
@@ -329,6 +329,6 @@ module Selenium
|
|
|
329
329
|
end
|
|
330
330
|
|
|
331
331
|
end # DOM
|
|
332
|
-
end #
|
|
332
|
+
end # V98
|
|
333
333
|
end # DevTools
|
|
334
334
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class DOMDebugger
|
|
25
25
|
|
|
26
26
|
def initialize(devtools)
|
|
@@ -89,6 +89,6 @@ module Selenium
|
|
|
89
89
|
end
|
|
90
90
|
|
|
91
91
|
end # DOMDebugger
|
|
92
|
-
end #
|
|
92
|
+
end # V98
|
|
93
93
|
end # DevTools
|
|
94
94
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class DOMSnapshot
|
|
25
25
|
|
|
26
26
|
def initialize(devtools)
|
|
@@ -58,6 +58,6 @@ module Selenium
|
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
end # DOMSnapshot
|
|
61
|
-
end #
|
|
61
|
+
end # V98
|
|
62
62
|
end # DevTools
|
|
63
63
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class DOMStorage
|
|
25
25
|
EVENTS = {
|
|
26
26
|
dom_storage_item_added: 'domStorageItemAdded',
|
|
@@ -70,6 +70,6 @@ module Selenium
|
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
end # DOMStorage
|
|
73
|
-
end #
|
|
73
|
+
end # V98
|
|
74
74
|
end # DevTools
|
|
75
75
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Emulation
|
|
25
25
|
EVENTS = {
|
|
26
26
|
virtual_time_budget_expired: 'virtualTimeBudgetExpired',
|
|
@@ -192,6 +192,6 @@ module Selenium
|
|
|
192
192
|
end
|
|
193
193
|
|
|
194
194
|
end # Emulation
|
|
195
|
-
end #
|
|
195
|
+
end # V98
|
|
196
196
|
end # DevTools
|
|
197
197
|
end # Selenium
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Licensed to the Software Freedom Conservancy (SFC) under one
|
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
|
5
|
+
# distributed with this work for additional information
|
|
6
|
+
# regarding copyright ownership. The SFC licenses this file
|
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
|
8
|
+
# "License"); you may not use this file except in compliance
|
|
9
|
+
# with the License. You may obtain a copy of the License at
|
|
10
|
+
#
|
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
#
|
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
|
14
|
+
# software distributed under the License is distributed on an
|
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
16
|
+
# KIND, either express or implied. See the License for the
|
|
17
|
+
# specific language governing permissions and limitations
|
|
18
|
+
# under the License.
|
|
19
|
+
|
|
20
|
+
# This file is automatically generated. Any changes will be lost!
|
|
21
|
+
module Selenium
|
|
22
|
+
module DevTools
|
|
23
|
+
module V98
|
|
24
|
+
class EventBreakpoints
|
|
25
|
+
|
|
26
|
+
def initialize(devtools)
|
|
27
|
+
@devtools = devtools
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def on(event, &block)
|
|
31
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
|
32
|
+
@devtools.callbacks["EventBreakpoints.#{event}"] << block
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def set_instrumentation_breakpoint(event_name:)
|
|
36
|
+
@devtools.send_cmd('EventBreakpoints.setInstrumentationBreakpoint',
|
|
37
|
+
eventName: event_name)
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def remove_instrumentation_breakpoint(event_name:)
|
|
41
|
+
@devtools.send_cmd('EventBreakpoints.removeInstrumentationBreakpoint',
|
|
42
|
+
eventName: event_name)
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
end # EventBreakpoints
|
|
46
|
+
end # V98
|
|
47
|
+
end # DevTools
|
|
48
|
+
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Fetch
|
|
25
25
|
EVENTS = {
|
|
26
26
|
request_paused: 'requestPaused',
|
|
@@ -98,6 +98,6 @@ module Selenium
|
|
|
98
98
|
end
|
|
99
99
|
|
|
100
100
|
end # Fetch
|
|
101
|
-
end #
|
|
101
|
+
end # V98
|
|
102
102
|
end # DevTools
|
|
103
103
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class HeadlessExperimental
|
|
25
25
|
EVENTS = {
|
|
26
26
|
needs_begin_frames_changed: 'needsBeginFramesChanged',
|
|
@@ -52,6 +52,6 @@ module Selenium
|
|
|
52
52
|
end
|
|
53
53
|
|
|
54
54
|
end # HeadlessExperimental
|
|
55
|
-
end #
|
|
55
|
+
end # V98
|
|
56
56
|
end # DevTools
|
|
57
57
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class HeapProfiler
|
|
25
25
|
EVENTS = {
|
|
26
26
|
add_heap_snapshot_chunk: 'addHeapSnapshotChunk',
|
|
@@ -100,6 +100,6 @@ module Selenium
|
|
|
100
100
|
end
|
|
101
101
|
|
|
102
102
|
end # HeapProfiler
|
|
103
|
-
end #
|
|
103
|
+
end # V98
|
|
104
104
|
end # DevTools
|
|
105
105
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class IndexedDB
|
|
25
25
|
|
|
26
26
|
def initialize(devtools)
|
|
@@ -91,6 +91,6 @@ module Selenium
|
|
|
91
91
|
end
|
|
92
92
|
|
|
93
93
|
end # IndexedDB
|
|
94
|
-
end #
|
|
94
|
+
end # V98
|
|
95
95
|
end # DevTools
|
|
96
96
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Input
|
|
25
25
|
EVENTS = {
|
|
26
26
|
drag_intercepted: 'dragIntercepted',
|
|
@@ -163,6 +163,6 @@ module Selenium
|
|
|
163
163
|
end
|
|
164
164
|
|
|
165
165
|
end # Input
|
|
166
|
-
end #
|
|
166
|
+
end # V98
|
|
167
167
|
end # DevTools
|
|
168
168
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Inspector
|
|
25
25
|
EVENTS = {
|
|
26
26
|
detached: 'detached',
|
|
@@ -46,6 +46,6 @@ module Selenium
|
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
end # Inspector
|
|
49
|
-
end #
|
|
49
|
+
end # V98
|
|
50
50
|
end # DevTools
|
|
51
51
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class IO
|
|
25
25
|
|
|
26
26
|
def initialize(devtools)
|
|
@@ -50,6 +50,6 @@ module Selenium
|
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
end # IO
|
|
53
|
-
end #
|
|
53
|
+
end # V98
|
|
54
54
|
end # DevTools
|
|
55
55
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class LayerTree
|
|
25
25
|
EVENTS = {
|
|
26
26
|
layer_painted: 'layerPainted',
|
|
@@ -86,6 +86,6 @@ module Selenium
|
|
|
86
86
|
end
|
|
87
87
|
|
|
88
88
|
end # LayerTree
|
|
89
|
-
end #
|
|
89
|
+
end # V98
|
|
90
90
|
end # DevTools
|
|
91
91
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Log
|
|
25
25
|
EVENTS = {
|
|
26
26
|
entry_added: 'entryAdded',
|
|
@@ -57,6 +57,6 @@ module Selenium
|
|
|
57
57
|
end
|
|
58
58
|
|
|
59
59
|
end # Log
|
|
60
|
-
end #
|
|
60
|
+
end # V98
|
|
61
61
|
end # DevTools
|
|
62
62
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Media
|
|
25
25
|
EVENTS = {
|
|
26
26
|
player_properties_changed: 'playerPropertiesChanged',
|
|
@@ -48,6 +48,6 @@ module Selenium
|
|
|
48
48
|
end
|
|
49
49
|
|
|
50
50
|
end # Media
|
|
51
|
-
end #
|
|
51
|
+
end # V98
|
|
52
52
|
end # DevTools
|
|
53
53
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Memory
|
|
25
25
|
|
|
26
26
|
def initialize(devtools)
|
|
@@ -77,6 +77,6 @@ module Selenium
|
|
|
77
77
|
end
|
|
78
78
|
|
|
79
79
|
end # Memory
|
|
80
|
-
end #
|
|
80
|
+
end # V98
|
|
81
81
|
end # DevTools
|
|
82
82
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Network
|
|
25
25
|
EVENTS = {
|
|
26
26
|
data_received: 'dataReceived',
|
|
@@ -52,6 +52,7 @@ module Selenium
|
|
|
52
52
|
subresource_web_bundle_inner_response_error: 'subresourceWebBundleInnerResponseError',
|
|
53
53
|
reporting_api_report_added: 'reportingApiReportAdded',
|
|
54
54
|
reporting_api_report_updated: 'reportingApiReportUpdated',
|
|
55
|
+
reporting_api_endpoints_changed_for_origin: 'reportingApiEndpointsChangedForOrigin',
|
|
55
56
|
}.freeze
|
|
56
57
|
|
|
57
58
|
def initialize(devtools)
|
|
@@ -194,7 +195,7 @@ module Selenium
|
|
|
194
195
|
cacheDisabled: cache_disabled)
|
|
195
196
|
end
|
|
196
197
|
|
|
197
|
-
def set_cookie(name:, value:, url: nil, domain: nil, path: nil, secure: nil, http_only: nil, same_site: nil, expires: nil, priority: nil, same_party: nil, source_scheme: nil, source_port: nil)
|
|
198
|
+
def set_cookie(name:, value:, url: nil, domain: nil, path: nil, secure: nil, http_only: nil, same_site: nil, expires: nil, priority: nil, same_party: nil, source_scheme: nil, source_port: nil, partition_key: nil)
|
|
198
199
|
@devtools.send_cmd('Network.setCookie',
|
|
199
200
|
name: name,
|
|
200
201
|
value: value,
|
|
@@ -208,7 +209,8 @@ module Selenium
|
|
|
208
209
|
priority: priority,
|
|
209
210
|
sameParty: same_party,
|
|
210
211
|
sourceScheme: source_scheme,
|
|
211
|
-
sourcePort: source_port
|
|
212
|
+
sourcePort: source_port,
|
|
213
|
+
partitionKey: partition_key)
|
|
212
214
|
end
|
|
213
215
|
|
|
214
216
|
def set_cookies(cookies:)
|
|
@@ -257,6 +259,6 @@ module Selenium
|
|
|
257
259
|
end
|
|
258
260
|
|
|
259
261
|
end # Network
|
|
260
|
-
end #
|
|
262
|
+
end # V98
|
|
261
263
|
end # DevTools
|
|
262
264
|
end # Selenium
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
|
21
21
|
module Selenium
|
|
22
22
|
module DevTools
|
|
23
|
-
module
|
|
23
|
+
module V98
|
|
24
24
|
class Overlay
|
|
25
25
|
EVENTS = {
|
|
26
26
|
inspect_node_requested: 'inspectNodeRequested',
|
|
@@ -191,7 +191,12 @@ module Selenium
|
|
|
191
191
|
hingeConfig: hinge_config)
|
|
192
192
|
end
|
|
193
193
|
|
|
194
|
+
def set_show_isolated_elements(isolated_element_highlight_configs:)
|
|
195
|
+
@devtools.send_cmd('Overlay.setShowIsolatedElements',
|
|
196
|
+
isolatedElementHighlightConfigs: isolated_element_highlight_configs)
|
|
197
|
+
end
|
|
198
|
+
|
|
194
199
|
end # Overlay
|
|
195
|
-
end #
|
|
200
|
+
end # V98
|
|
196
201
|
end # DevTools
|
|
197
202
|
end # Selenium
|