selenium-devtools 0.126.0 → 0.127.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/lib/selenium/devtools/{v124 → v127}/accessibility.rb +2 -2
  3. data/lib/selenium/devtools/{v124 → v127}/animation.rb +3 -2
  4. data/lib/selenium/devtools/{v124 → v127}/audits.rb +2 -2
  5. data/lib/selenium/devtools/{v124 → v127}/autofill.rb +2 -2
  6. data/lib/selenium/devtools/{v124 → v127}/background_service.rb +2 -2
  7. data/lib/selenium/devtools/{v124 → v127}/browser.rb +2 -2
  8. data/lib/selenium/devtools/{v124 → v127}/cache_storage.rb +2 -2
  9. data/lib/selenium/devtools/{v124 → v127}/cast.rb +2 -2
  10. data/lib/selenium/devtools/{v124 → v127}/console.rb +2 -2
  11. data/lib/selenium/devtools/{v124 → v127}/css.rb +2 -2
  12. data/lib/selenium/devtools/{v124 → v127}/database.rb +2 -2
  13. data/lib/selenium/devtools/{v124 → v127}/debugger.rb +2 -2
  14. data/lib/selenium/devtools/{v124 → v127}/device_access.rb +2 -2
  15. data/lib/selenium/devtools/{v124 → v127}/device_orientation.rb +2 -2
  16. data/lib/selenium/devtools/{v124 → v127}/dom.rb +14 -2
  17. data/lib/selenium/devtools/{v124 → v127}/dom_debugger.rb +2 -2
  18. data/lib/selenium/devtools/{v124 → v127}/dom_snapshot.rb +2 -2
  19. data/lib/selenium/devtools/{v124 → v127}/dom_storage.rb +2 -2
  20. data/lib/selenium/devtools/{v124 → v127}/emulation.rb +11 -2
  21. data/lib/selenium/devtools/{v124 → v127}/event_breakpoints.rb +2 -2
  22. data/lib/selenium/devtools/v127/extensions.rb +43 -0
  23. data/lib/selenium/devtools/{v124 → v127}/fed_cm.rb +2 -2
  24. data/lib/selenium/devtools/{v124 → v127}/fetch.rb +2 -2
  25. data/lib/selenium/devtools/{v124 → v127}/headless_experimental.rb +2 -2
  26. data/lib/selenium/devtools/{v124 → v127}/heap_profiler.rb +2 -2
  27. data/lib/selenium/devtools/{v124 → v127}/indexed_db.rb +2 -2
  28. data/lib/selenium/devtools/{v124 → v127}/input.rb +2 -2
  29. data/lib/selenium/devtools/{v124 → v127}/inspector.rb +2 -2
  30. data/lib/selenium/devtools/{v124 → v127}/io.rb +2 -2
  31. data/lib/selenium/devtools/{v124 → v127}/layer_tree.rb +2 -2
  32. data/lib/selenium/devtools/{v124 → v127}/log.rb +2 -2
  33. data/lib/selenium/devtools/{v124 → v127}/media.rb +2 -2
  34. data/lib/selenium/devtools/{v124 → v127}/memory.rb +2 -2
  35. data/lib/selenium/devtools/{v124 → v127}/network.rb +3 -2
  36. data/lib/selenium/devtools/{v124 → v127}/overlay.rb +2 -2
  37. data/lib/selenium/devtools/{v124 → v127}/page.rb +8 -6
  38. data/lib/selenium/devtools/{v124 → v127}/performance.rb +2 -2
  39. data/lib/selenium/devtools/{v124 → v127}/performance_timeline.rb +2 -2
  40. data/lib/selenium/devtools/{v124 → v127}/preload.rb +2 -2
  41. data/lib/selenium/devtools/{v124 → v127}/profiler.rb +2 -2
  42. data/lib/selenium/devtools/v127/pwa.rb +71 -0
  43. data/lib/selenium/devtools/{v124 → v127}/runtime.rb +2 -2
  44. data/lib/selenium/devtools/{v124 → v127}/schema.rb +2 -2
  45. data/lib/selenium/devtools/{v124 → v127}/security.rb +2 -2
  46. data/lib/selenium/devtools/{v124 → v127}/service_worker.rb +2 -2
  47. data/lib/selenium/devtools/{v124 → v127}/storage.rb +6 -2
  48. data/lib/selenium/devtools/{v124 → v127}/system_info.rb +2 -2
  49. data/lib/selenium/devtools/{v124 → v127}/target.rb +2 -2
  50. data/lib/selenium/devtools/{v124 → v127}/tethering.rb +2 -2
  51. data/lib/selenium/devtools/{v124 → v127}/tracing.rb +2 -2
  52. data/lib/selenium/devtools/{v124 → v127}/web_audio.rb +2 -2
  53. data/lib/selenium/devtools/{v124 → v127}/web_authn.rb +2 -2
  54. data/lib/selenium/devtools/{v124.rb → v127.rb} +5 -3
  55. data/lib/selenium/devtools/version.rb +1 -1
  56. data/selenium-devtools.gemspec +1 -1
  57. metadata +55 -53
@@ -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 V124
23
+ module V127
24
24
  class Network
25
25
  EVENTS = {
26
26
  data_received: 'dataReceived',
@@ -45,6 +45,7 @@ module Selenium
45
45
  web_transport_closed: 'webTransportClosed',
46
46
  request_will_be_sent_extra_info: 'requestWillBeSentExtraInfo',
47
47
  response_received_extra_info: 'responseReceivedExtraInfo',
48
+ response_received_early_hints: 'responseReceivedEarlyHints',
48
49
  trust_token_operation_done: 'trustTokenOperationDone',
49
50
  subresource_web_bundle_metadata_received: 'subresourceWebBundleMetadataReceived',
50
51
  subresource_web_bundle_metadata_error: 'subresourceWebBundleMetadataError',
@@ -268,6 +269,6 @@ module Selenium
268
269
  end
269
270
 
270
271
  end # Network
271
- end # V124
272
+ end # V127
272
273
  end # DevTools
273
274
  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 V124
23
+ module V127
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 # V124
205
+ end # V127
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 V124
23
+ module V127
24
24
  class Page
25
25
  EVENTS = {
26
26
  dom_content_event_fired: 'domContentEventFired',
@@ -125,8 +125,9 @@ module Selenium
125
125
  @devtools.send_cmd('Page.enable')
126
126
  end
127
127
 
128
- def get_app_manifest
129
- @devtools.send_cmd('Page.getAppManifest')
128
+ def get_app_manifest(manifest_id: nil)
129
+ @devtools.send_cmd('Page.getAppManifest',
130
+ manifestId: manifest_id)
130
131
  end
131
132
 
132
133
  def get_installability_errors
@@ -213,10 +214,11 @@ module Selenium
213
214
  generateDocumentOutline: generate_document_outline)
214
215
  end
215
216
 
216
- def reload(ignore_cache: nil, script_to_evaluate_on_load: nil)
217
+ def reload(ignore_cache: nil, script_to_evaluate_on_load: nil, loader_id: nil)
217
218
  @devtools.send_cmd('Page.reload',
218
219
  ignoreCache: ignore_cache,
219
- scriptToEvaluateOnLoad: script_to_evaluate_on_load)
220
+ scriptToEvaluateOnLoad: script_to_evaluate_on_load,
221
+ loaderId: loader_id)
220
222
  end
221
223
 
222
224
  def remove_script_to_evaluate_on_load(identifier:)
@@ -403,6 +405,6 @@ module Selenium
403
405
  end
404
406
 
405
407
  end # Page
406
- end # V124
408
+ end # V127
407
409
  end # DevTools
408
410
  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 V124
23
+ module V127
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 # V124
57
+ end # V127
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 V124
23
+ module V127
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 # V124
44
+ end # V127
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 V124
23
+ module V127
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 # V124
52
+ end # V127
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 V124
23
+ module V127
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 # V124
81
+ end # V127
82
82
  end # DevTools
83
83
  end # Selenium
@@ -0,0 +1,71 @@
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 V127
24
+ class PWA
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["PWA.#{event}"] << block
33
+ end
34
+
35
+ def get_os_app_state(manifest_id:)
36
+ @devtools.send_cmd('PWA.getOsAppState',
37
+ manifestId: manifest_id)
38
+ end
39
+
40
+ def install(manifest_id:, install_url_or_bundle_url: nil)
41
+ @devtools.send_cmd('PWA.install',
42
+ manifestId: manifest_id,
43
+ installUrlOrBundleUrl: install_url_or_bundle_url)
44
+ end
45
+
46
+ def uninstall(manifest_id:)
47
+ @devtools.send_cmd('PWA.uninstall',
48
+ manifestId: manifest_id)
49
+ end
50
+
51
+ def launch(manifest_id:, url: nil)
52
+ @devtools.send_cmd('PWA.launch',
53
+ manifestId: manifest_id,
54
+ url: url)
55
+ end
56
+
57
+ def launch_files_in_app(manifest_id:, files:)
58
+ @devtools.send_cmd('PWA.launchFilesInApp',
59
+ manifestId: manifest_id,
60
+ files: files)
61
+ end
62
+
63
+ def open_current_page_in_app(manifest_id:)
64
+ @devtools.send_cmd('PWA.openCurrentPageInApp',
65
+ manifestId: manifest_id)
66
+ end
67
+
68
+ end # PWA
69
+ end # V127
70
+ end # DevTools
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 V124
23
+ module V127
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 # V124
200
+ end # V127
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 V124
23
+ module V127
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 # V124
40
+ end # V127
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 V124
23
+ module V127
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 # V124
65
+ end # V127
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 V124
23
+ module V127
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 # V124
110
+ end # V127
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 V124
23
+ module V127
24
24
  class Storage
25
25
  EVENTS = {
26
26
  cache_storage_content_updated: 'cacheStorageContentUpdated',
@@ -219,11 +219,15 @@ module Selenium
219
219
  enable: enable)
220
220
  end
221
221
 
222
+ def send_pending_attribution_reports
223
+ @devtools.send_cmd('Storage.sendPendingAttributionReports')
224
+ end
225
+
222
226
  def get_related_website_sets
223
227
  @devtools.send_cmd('Storage.getRelatedWebsiteSets')
224
228
  end
225
229
 
226
230
  end # Storage
227
- end # V124
231
+ end # V127
228
232
  end # DevTools
229
233
  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 V124
23
+ module V127
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 # V124
49
+ end # V127
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 V124
23
+ module V127
24
24
  class Target
25
25
  EVENTS = {
26
26
  attached_to_target: 'attachedToTarget',
@@ -146,6 +146,6 @@ module Selenium
146
146
  end
147
147
 
148
148
  end # Target
149
- end # V124
149
+ end # V127
150
150
  end # DevTools
151
151
  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 V124
23
+ module V127
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 # V124
49
+ end # V127
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 V124
23
+ module V127
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 # V124
73
+ end # V127
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 V124
23
+ module V127
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 # V124
64
+ end # V127
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 V124
23
+ module V127
24
24
  class WebAuthn
25
25
  EVENTS = {
26
26
  credential_added: 'credentialAdded',
@@ -112,6 +112,6 @@ module Selenium
112
112
  end
113
113
 
114
114
  end # WebAuthn
115
- end # V124
115
+ end # V127
116
116
  end # DevTools
117
117
  end # Selenium
@@ -19,15 +19,16 @@
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__))}/v124/*", &method(:require))
22
+ Dir.glob("#{File.dirname(File.absolute_path(__FILE__))}/v127/*", &method(:require))
23
23
 
24
24
  module Selenium
25
25
  module DevTools
26
- module V124
26
+ module V127
27
27
  METHODS_TO_CLASSES = {
28
28
  accessibility: 'Accessibility',
29
29
  animation: 'Animation',
30
30
  audits: 'Audits',
31
+ extensions: 'Extensions',
31
32
  autofill: 'Autofill',
32
33
  background_service: 'BackgroundService',
33
34
  browser: 'Browser',
@@ -69,6 +70,7 @@ module Selenium
69
70
  device_access: 'DeviceAccess',
70
71
  preload: 'Preload',
71
72
  fed_cm: 'FedCm',
73
+ pwa: 'PWA',
72
74
  console: 'Console',
73
75
  debugger: 'Debugger',
74
76
  heap_profiler: 'HeapProfiler',
@@ -76,6 +78,6 @@ module Selenium
76
78
  runtime: 'Runtime',
77
79
  schema: 'Schema',
78
80
  }.freeze
79
- end # V124
81
+ end # V127
80
82
  end # DevTools
81
83
  end # Selenium
@@ -19,6 +19,6 @@
19
19
 
20
20
  module Selenium
21
21
  module DevTools
22
- VERSION = '0.126.0'
22
+ VERSION = '0.127.0'
23
23
  end # DevTools
24
24
  end # Selenium
@@ -39,5 +39,5 @@ Gem::Specification.new do |s|
39
39
 
40
40
  s.require_paths = ['lib']
41
41
 
42
- s.add_runtime_dependency 'selenium-webdriver', '~> 4.2'
42
+ s.add_dependency 'selenium-webdriver', '~> 4.2'
43
43
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: selenium-devtools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.126.0
4
+ version: 0.127.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Rodionov
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-06-20 00:00:00.000000000 Z
13
+ date: 2024-08-09 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: selenium-webdriver
@@ -41,57 +41,6 @@ files:
41
41
  - LICENSE
42
42
  - NOTICE
43
43
  - lib/selenium/devtools.rb
44
- - lib/selenium/devtools/v124.rb
45
- - lib/selenium/devtools/v124/accessibility.rb
46
- - lib/selenium/devtools/v124/animation.rb
47
- - lib/selenium/devtools/v124/audits.rb
48
- - lib/selenium/devtools/v124/autofill.rb
49
- - lib/selenium/devtools/v124/background_service.rb
50
- - lib/selenium/devtools/v124/browser.rb
51
- - lib/selenium/devtools/v124/cache_storage.rb
52
- - lib/selenium/devtools/v124/cast.rb
53
- - lib/selenium/devtools/v124/console.rb
54
- - lib/selenium/devtools/v124/css.rb
55
- - lib/selenium/devtools/v124/database.rb
56
- - lib/selenium/devtools/v124/debugger.rb
57
- - lib/selenium/devtools/v124/device_access.rb
58
- - lib/selenium/devtools/v124/device_orientation.rb
59
- - lib/selenium/devtools/v124/dom.rb
60
- - lib/selenium/devtools/v124/dom_debugger.rb
61
- - lib/selenium/devtools/v124/dom_snapshot.rb
62
- - lib/selenium/devtools/v124/dom_storage.rb
63
- - lib/selenium/devtools/v124/emulation.rb
64
- - lib/selenium/devtools/v124/event_breakpoints.rb
65
- - lib/selenium/devtools/v124/fed_cm.rb
66
- - lib/selenium/devtools/v124/fetch.rb
67
- - lib/selenium/devtools/v124/headless_experimental.rb
68
- - lib/selenium/devtools/v124/heap_profiler.rb
69
- - lib/selenium/devtools/v124/indexed_db.rb
70
- - lib/selenium/devtools/v124/input.rb
71
- - lib/selenium/devtools/v124/inspector.rb
72
- - lib/selenium/devtools/v124/io.rb
73
- - lib/selenium/devtools/v124/layer_tree.rb
74
- - lib/selenium/devtools/v124/log.rb
75
- - lib/selenium/devtools/v124/media.rb
76
- - lib/selenium/devtools/v124/memory.rb
77
- - lib/selenium/devtools/v124/network.rb
78
- - lib/selenium/devtools/v124/overlay.rb
79
- - lib/selenium/devtools/v124/page.rb
80
- - lib/selenium/devtools/v124/performance.rb
81
- - lib/selenium/devtools/v124/performance_timeline.rb
82
- - lib/selenium/devtools/v124/preload.rb
83
- - lib/selenium/devtools/v124/profiler.rb
84
- - lib/selenium/devtools/v124/runtime.rb
85
- - lib/selenium/devtools/v124/schema.rb
86
- - lib/selenium/devtools/v124/security.rb
87
- - lib/selenium/devtools/v124/service_worker.rb
88
- - lib/selenium/devtools/v124/storage.rb
89
- - lib/selenium/devtools/v124/system_info.rb
90
- - lib/selenium/devtools/v124/target.rb
91
- - lib/selenium/devtools/v124/tethering.rb
92
- - lib/selenium/devtools/v124/tracing.rb
93
- - lib/selenium/devtools/v124/web_audio.rb
94
- - lib/selenium/devtools/v124/web_authn.rb
95
44
  - lib/selenium/devtools/v125.rb
96
45
  - lib/selenium/devtools/v125/accessibility.rb
97
46
  - lib/selenium/devtools/v125/animation.rb
@@ -197,6 +146,59 @@ files:
197
146
  - lib/selenium/devtools/v126/tracing.rb
198
147
  - lib/selenium/devtools/v126/web_audio.rb
199
148
  - lib/selenium/devtools/v126/web_authn.rb
149
+ - lib/selenium/devtools/v127.rb
150
+ - lib/selenium/devtools/v127/accessibility.rb
151
+ - lib/selenium/devtools/v127/animation.rb
152
+ - lib/selenium/devtools/v127/audits.rb
153
+ - lib/selenium/devtools/v127/autofill.rb
154
+ - lib/selenium/devtools/v127/background_service.rb
155
+ - lib/selenium/devtools/v127/browser.rb
156
+ - lib/selenium/devtools/v127/cache_storage.rb
157
+ - lib/selenium/devtools/v127/cast.rb
158
+ - lib/selenium/devtools/v127/console.rb
159
+ - lib/selenium/devtools/v127/css.rb
160
+ - lib/selenium/devtools/v127/database.rb
161
+ - lib/selenium/devtools/v127/debugger.rb
162
+ - lib/selenium/devtools/v127/device_access.rb
163
+ - lib/selenium/devtools/v127/device_orientation.rb
164
+ - lib/selenium/devtools/v127/dom.rb
165
+ - lib/selenium/devtools/v127/dom_debugger.rb
166
+ - lib/selenium/devtools/v127/dom_snapshot.rb
167
+ - lib/selenium/devtools/v127/dom_storage.rb
168
+ - lib/selenium/devtools/v127/emulation.rb
169
+ - lib/selenium/devtools/v127/event_breakpoints.rb
170
+ - lib/selenium/devtools/v127/extensions.rb
171
+ - lib/selenium/devtools/v127/fed_cm.rb
172
+ - lib/selenium/devtools/v127/fetch.rb
173
+ - lib/selenium/devtools/v127/headless_experimental.rb
174
+ - lib/selenium/devtools/v127/heap_profiler.rb
175
+ - lib/selenium/devtools/v127/indexed_db.rb
176
+ - lib/selenium/devtools/v127/input.rb
177
+ - lib/selenium/devtools/v127/inspector.rb
178
+ - lib/selenium/devtools/v127/io.rb
179
+ - lib/selenium/devtools/v127/layer_tree.rb
180
+ - lib/selenium/devtools/v127/log.rb
181
+ - lib/selenium/devtools/v127/media.rb
182
+ - lib/selenium/devtools/v127/memory.rb
183
+ - lib/selenium/devtools/v127/network.rb
184
+ - lib/selenium/devtools/v127/overlay.rb
185
+ - lib/selenium/devtools/v127/page.rb
186
+ - lib/selenium/devtools/v127/performance.rb
187
+ - lib/selenium/devtools/v127/performance_timeline.rb
188
+ - lib/selenium/devtools/v127/preload.rb
189
+ - lib/selenium/devtools/v127/profiler.rb
190
+ - lib/selenium/devtools/v127/pwa.rb
191
+ - lib/selenium/devtools/v127/runtime.rb
192
+ - lib/selenium/devtools/v127/schema.rb
193
+ - lib/selenium/devtools/v127/security.rb
194
+ - lib/selenium/devtools/v127/service_worker.rb
195
+ - lib/selenium/devtools/v127/storage.rb
196
+ - lib/selenium/devtools/v127/system_info.rb
197
+ - lib/selenium/devtools/v127/target.rb
198
+ - lib/selenium/devtools/v127/tethering.rb
199
+ - lib/selenium/devtools/v127/tracing.rb
200
+ - lib/selenium/devtools/v127/web_audio.rb
201
+ - lib/selenium/devtools/v127/web_authn.rb
200
202
  - lib/selenium/devtools/v85.rb
201
203
  - lib/selenium/devtools/v85/accessibility.rb
202
204
  - lib/selenium/devtools/v85/animation.rb