selenium-devtools 0.137.0 → 0.138.0
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/{v135 → v138}/accessibility.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/animation.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/audits.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/autofill.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/background_service.rb +2 -2
- data/lib/selenium/devtools/v138/bluetooth_emulation.rb +133 -0
- data/lib/selenium/devtools/{v135 → v138}/browser.rb +10 -2
- data/lib/selenium/devtools/{v135 → v138}/cache_storage.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/cast.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/console.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/css.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/debugger.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/device_access.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/device_orientation.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/dom.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/dom_debugger.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/dom_snapshot.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/dom_storage.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/emulation.rb +34 -4
- data/lib/selenium/devtools/{v135 → v138}/event_breakpoints.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/extensions.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/fed_cm.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/fetch.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/file_system.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/headless_experimental.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/heap_profiler.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/indexed_db.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/input.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/inspector.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/io.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/layer_tree.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/log.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/media.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/memory.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/network.rb +17 -4
- data/lib/selenium/devtools/{v135 → v138}/overlay.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/page.rb +7 -6
- data/lib/selenium/devtools/{v135 → v138}/performance.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/performance_timeline.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/preload.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/profiler.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/pwa.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/runtime.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/schema.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/security.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/service_worker.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/storage.rb +11 -2
- data/lib/selenium/devtools/{v135 → v138}/system_info.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/target.rb +5 -4
- data/lib/selenium/devtools/{v135 → v138}/tethering.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/tracing.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/web_audio.rb +2 -2
- data/lib/selenium/devtools/{v135 → v138}/web_authn.rb +2 -2
- data/lib/selenium/devtools/{v135.rb → v138.rb} +3 -3
- data/lib/selenium/devtools/version.rb +1 -1
- metadata +56 -56
- data/lib/selenium/devtools/v135/bluetooth_emulation.rb +0 -60
@@ -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 V138
|
24
24
|
class Input
|
25
25
|
EVENTS = {
|
26
26
|
drag_intercepted: 'dragIntercepted',
|
@@ -167,6 +167,6 @@ module Selenium
|
|
167
167
|
end
|
168
168
|
|
169
169
|
end # Input
|
170
|
-
end #
|
170
|
+
end # V138
|
171
171
|
end # DevTools
|
172
172
|
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 V138
|
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 # V138
|
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 V138
|
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 # V138
|
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 V138
|
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 # V138
|
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 V138
|
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 # V138
|
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 V138
|
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 # V138
|
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 V138
|
24
24
|
class Memory
|
25
25
|
|
26
26
|
def initialize(devtools)
|
@@ -81,6 +81,6 @@ module Selenium
|
|
81
81
|
end
|
82
82
|
|
83
83
|
end # Memory
|
84
|
-
end #
|
84
|
+
end # V138
|
85
85
|
end # DevTools
|
86
86
|
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 V138
|
24
24
|
class Network
|
25
25
|
EVENTS = {
|
26
26
|
data_received: 'dataReceived',
|
@@ -43,6 +43,18 @@ module Selenium
|
|
43
43
|
web_transport_created: 'webTransportCreated',
|
44
44
|
web_transport_connection_established: 'webTransportConnectionEstablished',
|
45
45
|
web_transport_closed: 'webTransportClosed',
|
46
|
+
direct_tcp_socket_created: 'directTCPSocketCreated',
|
47
|
+
direct_tcp_socket_opened: 'directTCPSocketOpened',
|
48
|
+
direct_tcp_socket_aborted: 'directTCPSocketAborted',
|
49
|
+
direct_tcp_socket_closed: 'directTCPSocketClosed',
|
50
|
+
direct_tcp_socket_chunk_sent: 'directTCPSocketChunkSent',
|
51
|
+
direct_tcp_socket_chunk_received: 'directTCPSocketChunkReceived',
|
52
|
+
direct_udp_socket_created: 'directUDPSocketCreated',
|
53
|
+
direct_udp_socket_opened: 'directUDPSocketOpened',
|
54
|
+
direct_udp_socket_aborted: 'directUDPSocketAborted',
|
55
|
+
direct_udp_socket_closed: 'directUDPSocketClosed',
|
56
|
+
direct_udp_socket_chunk_sent: 'directUDPSocketChunkSent',
|
57
|
+
direct_udp_socket_chunk_received: 'directUDPSocketChunkReceived',
|
46
58
|
request_will_be_sent_extra_info: 'requestWillBeSentExtraInfo',
|
47
59
|
response_received_extra_info: 'responseReceivedExtraInfo',
|
48
60
|
response_received_early_hints: 'responseReceivedEarlyHints',
|
@@ -132,11 +144,12 @@ module Selenium
|
|
132
144
|
packetReordering: packet_reordering)
|
133
145
|
end
|
134
146
|
|
135
|
-
def enable(max_total_buffer_size: nil, max_resource_buffer_size: nil, max_post_data_size: nil)
|
147
|
+
def enable(max_total_buffer_size: nil, max_resource_buffer_size: nil, max_post_data_size: nil, report_direct_socket_traffic: nil)
|
136
148
|
@devtools.send_cmd('Network.enable',
|
137
149
|
maxTotalBufferSize: max_total_buffer_size,
|
138
150
|
maxResourceBufferSize: max_resource_buffer_size,
|
139
|
-
maxPostDataSize: max_post_data_size
|
151
|
+
maxPostDataSize: max_post_data_size,
|
152
|
+
reportDirectSocketTraffic: report_direct_socket_traffic)
|
140
153
|
end
|
141
154
|
|
142
155
|
def get_all_cookies
|
@@ -277,6 +290,6 @@ module Selenium
|
|
277
290
|
end
|
278
291
|
|
279
292
|
end # Network
|
280
|
-
end #
|
293
|
+
end # V138
|
281
294
|
end # DevTools
|
282
295
|
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 V138
|
24
24
|
class Overlay
|
25
25
|
EVENTS = {
|
26
26
|
inspect_node_requested: 'inspectNodeRequested',
|
@@ -202,6 +202,6 @@ module Selenium
|
|
202
202
|
end
|
203
203
|
|
204
204
|
end # Overlay
|
205
|
-
end #
|
205
|
+
end # V138
|
206
206
|
end # DevTools
|
207
207
|
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 V138
|
24
24
|
class Page
|
25
25
|
EVENTS = {
|
26
26
|
dom_content_event_fired: 'domContentEventFired',
|
@@ -145,8 +145,8 @@ module Selenium
|
|
145
145
|
@devtools.send_cmd('Page.getAppId')
|
146
146
|
end
|
147
147
|
|
148
|
-
def
|
149
|
-
@devtools.send_cmd('Page.
|
148
|
+
def get_ad_script_ancestry_ids(frame_id:)
|
149
|
+
@devtools.send_cmd('Page.getAdScriptAncestryIds',
|
150
150
|
frameId: frame_id)
|
151
151
|
end
|
152
152
|
|
@@ -397,9 +397,10 @@ module Selenium
|
|
397
397
|
@devtools.send_cmd('Page.waitForDebugger')
|
398
398
|
end
|
399
399
|
|
400
|
-
def set_intercept_file_chooser_dialog(enabled:)
|
400
|
+
def set_intercept_file_chooser_dialog(enabled:, cancel: nil)
|
401
401
|
@devtools.send_cmd('Page.setInterceptFileChooserDialog',
|
402
|
-
enabled: enabled
|
402
|
+
enabled: enabled,
|
403
|
+
cancel: cancel)
|
403
404
|
end
|
404
405
|
|
405
406
|
def set_prerendering_allowed(is_allowed:)
|
@@ -408,6 +409,6 @@ module Selenium
|
|
408
409
|
end
|
409
410
|
|
410
411
|
end # Page
|
411
|
-
end #
|
412
|
+
end # V138
|
412
413
|
end # DevTools
|
413
414
|
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 V138
|
24
24
|
class Performance
|
25
25
|
EVENTS = {
|
26
26
|
metrics: 'metrics',
|
@@ -54,6 +54,6 @@ module Selenium
|
|
54
54
|
end
|
55
55
|
|
56
56
|
end # Performance
|
57
|
-
end #
|
57
|
+
end # V138
|
58
58
|
end # DevTools
|
59
59
|
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 V138
|
24
24
|
class PerformanceTimeline
|
25
25
|
EVENTS = {
|
26
26
|
timeline_event_added: 'timelineEventAdded',
|
@@ -41,6 +41,6 @@ module Selenium
|
|
41
41
|
end
|
42
42
|
|
43
43
|
end # PerformanceTimeline
|
44
|
-
end #
|
44
|
+
end # V138
|
45
45
|
end # DevTools
|
46
46
|
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 V138
|
24
24
|
class Preload
|
25
25
|
EVENTS = {
|
26
26
|
rule_set_updated: 'ruleSetUpdated',
|
@@ -49,6 +49,6 @@ module Selenium
|
|
49
49
|
end
|
50
50
|
|
51
51
|
end # Preload
|
52
|
-
end #
|
52
|
+
end # V138
|
53
53
|
end # DevTools
|
54
54
|
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 V138
|
24
24
|
class Profiler
|
25
25
|
EVENTS = {
|
26
26
|
console_profile_finished: 'consoleProfileFinished',
|
@@ -78,6 +78,6 @@ module Selenium
|
|
78
78
|
end
|
79
79
|
|
80
80
|
end # Profiler
|
81
|
-
end #
|
81
|
+
end # V138
|
82
82
|
end # DevTools
|
83
83
|
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 V138
|
24
24
|
class PWA
|
25
25
|
|
26
26
|
def initialize(devtools)
|
@@ -73,6 +73,6 @@ module Selenium
|
|
73
73
|
end
|
74
74
|
|
75
75
|
end # PWA
|
76
|
-
end #
|
76
|
+
end # V138
|
77
77
|
end # DevTools
|
78
78
|
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 V138
|
24
24
|
class Runtime
|
25
25
|
EVENTS = {
|
26
26
|
binding_called: 'bindingCalled',
|
@@ -197,6 +197,6 @@ module Selenium
|
|
197
197
|
end
|
198
198
|
|
199
199
|
end # Runtime
|
200
|
-
end #
|
200
|
+
end # V138
|
201
201
|
end # DevTools
|
202
202
|
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 V138
|
24
24
|
class Schema
|
25
25
|
|
26
26
|
def initialize(devtools)
|
@@ -37,6 +37,6 @@ module Selenium
|
|
37
37
|
end
|
38
38
|
|
39
39
|
end # Schema
|
40
|
-
end #
|
40
|
+
end # V138
|
41
41
|
end # DevTools
|
42
42
|
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 V138
|
24
24
|
class Security
|
25
25
|
EVENTS = {
|
26
26
|
certificate_error: 'certificateError',
|
@@ -62,6 +62,6 @@ module Selenium
|
|
62
62
|
end
|
63
63
|
|
64
64
|
end # Security
|
65
|
-
end #
|
65
|
+
end # V138
|
66
66
|
end # DevTools
|
67
67
|
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 V138
|
24
24
|
class ServiceWorker
|
25
25
|
EVENTS = {
|
26
26
|
worker_error_reported: 'workerErrorReported',
|
@@ -107,6 +107,6 @@ module Selenium
|
|
107
107
|
end
|
108
108
|
|
109
109
|
end # ServiceWorker
|
110
|
-
end #
|
110
|
+
end # V138
|
111
111
|
end # DevTools
|
112
112
|
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 V138
|
24
24
|
class Storage
|
25
25
|
EVENTS = {
|
26
26
|
cache_storage_content_updated: 'cacheStorageContentUpdated',
|
@@ -31,10 +31,12 @@ module Selenium
|
|
31
31
|
interest_group_auction_event_occurred: 'interestGroupAuctionEventOccurred',
|
32
32
|
interest_group_auction_network_request_created: 'interestGroupAuctionNetworkRequestCreated',
|
33
33
|
shared_storage_accessed: 'sharedStorageAccessed',
|
34
|
+
shared_storage_worklet_operation_execution_finished: 'sharedStorageWorkletOperationExecutionFinished',
|
34
35
|
storage_bucket_created_or_updated: 'storageBucketCreatedOrUpdated',
|
35
36
|
storage_bucket_deleted: 'storageBucketDeleted',
|
36
37
|
attribution_reporting_source_registered: 'attributionReportingSourceRegistered',
|
37
38
|
attribution_reporting_trigger_registered: 'attributionReportingTriggerRegistered',
|
39
|
+
attribution_reporting_report_sent: 'attributionReportingReportSent',
|
38
40
|
}.freeze
|
39
41
|
|
40
42
|
def initialize(devtools)
|
@@ -233,7 +235,14 @@ module Selenium
|
|
233
235
|
thirdPartyUrls: third_party_urls)
|
234
236
|
end
|
235
237
|
|
238
|
+
def set_protected_audience_k_anonymity(owner:, name:, hashes:)
|
239
|
+
@devtools.send_cmd('Storage.setProtectedAudienceKAnonymity',
|
240
|
+
owner: owner,
|
241
|
+
name: name,
|
242
|
+
hashes: hashes)
|
243
|
+
end
|
244
|
+
|
236
245
|
end # Storage
|
237
|
-
end #
|
246
|
+
end # V138
|
238
247
|
end # DevTools
|
239
248
|
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 V138
|
24
24
|
class SystemInfo
|
25
25
|
|
26
26
|
def initialize(devtools)
|
@@ -46,6 +46,6 @@ module Selenium
|
|
46
46
|
end
|
47
47
|
|
48
48
|
end # SystemInfo
|
49
|
-
end #
|
49
|
+
end # V138
|
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 V138
|
24
24
|
class Target
|
25
25
|
EVENTS = {
|
26
26
|
attached_to_target: 'attachedToTarget',
|
@@ -80,7 +80,7 @@ module Selenium
|
|
80
80
|
@devtools.send_cmd('Target.getBrowserContexts')
|
81
81
|
end
|
82
82
|
|
83
|
-
def create_target(url:, left: nil, top: nil, width: nil, height: nil, window_state: nil, browser_context_id: nil, enable_begin_frame_control: nil, new_window: nil, background: nil, for_tab: nil)
|
83
|
+
def create_target(url:, left: nil, top: nil, width: nil, height: nil, window_state: nil, browser_context_id: nil, enable_begin_frame_control: nil, new_window: nil, background: nil, for_tab: nil, hidden: nil)
|
84
84
|
@devtools.send_cmd('Target.createTarget',
|
85
85
|
url: url,
|
86
86
|
left: left,
|
@@ -92,7 +92,8 @@ module Selenium
|
|
92
92
|
enableBeginFrameControl: enable_begin_frame_control,
|
93
93
|
newWindow: new_window,
|
94
94
|
background: background,
|
95
|
-
forTab: for_tab
|
95
|
+
forTab: for_tab,
|
96
|
+
hidden: hidden)
|
96
97
|
end
|
97
98
|
|
98
99
|
def detach_from_target(session_id: nil, target_id: nil)
|
@@ -150,6 +151,6 @@ module Selenium
|
|
150
151
|
end
|
151
152
|
|
152
153
|
end # Target
|
153
|
-
end #
|
154
|
+
end # V138
|
154
155
|
end # DevTools
|
155
156
|
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 V138
|
24
24
|
class Tethering
|
25
25
|
EVENTS = {
|
26
26
|
accepted: 'accepted',
|
@@ -46,6 +46,6 @@ module Selenium
|
|
46
46
|
end
|
47
47
|
|
48
48
|
end # Tethering
|
49
|
-
end #
|
49
|
+
end # V138
|
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 V138
|
24
24
|
class Tracing
|
25
25
|
EVENTS = {
|
26
26
|
buffer_usage: 'bufferUsage',
|
@@ -70,6 +70,6 @@ module Selenium
|
|
70
70
|
end
|
71
71
|
|
72
72
|
end # Tracing
|
73
|
-
end #
|
73
|
+
end # V138
|
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 V138
|
24
24
|
class WebAudio
|
25
25
|
EVENTS = {
|
26
26
|
context_created: 'contextCreated',
|
@@ -61,6 +61,6 @@ module Selenium
|
|
61
61
|
end
|
62
62
|
|
63
63
|
end # WebAudio
|
64
|
-
end #
|
64
|
+
end # V138
|
65
65
|
end # DevTools
|
66
66
|
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 V138
|
24
24
|
class WebAuthn
|
25
25
|
EVENTS = {
|
26
26
|
credential_added: 'credentialAdded',
|
@@ -114,6 +114,6 @@ module Selenium
|
|
114
114
|
end
|
115
115
|
|
116
116
|
end # WebAuthn
|
117
|
-
end #
|
117
|
+
end # V138
|
118
118
|
end # DevTools
|
119
119
|
end # Selenium
|
@@ -19,11 +19,11 @@
|
|
19
19
|
|
20
20
|
# This file is automatically generated. Any changes will be lost!
|
21
21
|
|
22
|
-
Dir.glob("#{File.dirname(File.absolute_path(__FILE__))}/
|
22
|
+
Dir.glob("#{File.dirname(File.absolute_path(__FILE__))}/v138/*", &method(:require))
|
23
23
|
|
24
24
|
module Selenium
|
25
25
|
module DevTools
|
26
|
-
module
|
26
|
+
module V138
|
27
27
|
METHODS_TO_CLASSES = {
|
28
28
|
accessibility: 'Accessibility',
|
29
29
|
animation: 'Animation',
|
@@ -79,6 +79,6 @@ module Selenium
|
|
79
79
|
runtime: 'Runtime',
|
80
80
|
schema: 'Schema',
|
81
81
|
}.freeze
|
82
|
-
end #
|
82
|
+
end # V138
|
83
83
|
end # DevTools
|
84
84
|
end # Selenium
|