selenium-devtools 0.0.1.alpha
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 +7 -0
- data/lib/selenium/devtools/v88.rb +1 -0
- data/lib/selenium/devtools/v88/accessibility.rb +73 -0
- data/lib/selenium/devtools/v88/animation.rb +100 -0
- data/lib/selenium/devtools/v88/application_cache.rb +66 -0
- data/lib/selenium/devtools/v88/audits.rb +63 -0
- data/lib/selenium/devtools/v88/background_service.rb +69 -0
- data/lib/selenium/devtools/v88/browser.rb +130 -0
- data/lib/selenium/devtools/v88/cache_storage.rb +75 -0
- data/lib/selenium/devtools/v88/cast.rb +72 -0
- data/lib/selenium/devtools/v88/console.rb +59 -0
- data/lib/selenium/devtools/v88/css.rb +181 -0
- data/lib/selenium/devtools/v88/database.rb +66 -0
- data/lib/selenium/devtools/v88/debugger.rb +233 -0
- data/lib/selenium/devtools/v88/device_orientation.rb +55 -0
- data/lib/selenium/devtools/v88/dom.rb +329 -0
- data/lib/selenium/devtools/v88/dom_debugger.rb +95 -0
- data/lib/selenium/devtools/v88/dom_snapshot.rb +67 -0
- data/lib/selenium/devtools/v88/dom_storage.rb +81 -0
- data/lib/selenium/devtools/v88/emulation.rb +198 -0
- data/lib/selenium/devtools/v88/fetch.rb +99 -0
- data/lib/selenium/devtools/v88/headless_experimental.rb +63 -0
- data/lib/selenium/devtools/v88/heap_profiler.rb +109 -0
- data/lib/selenium/devtools/v88/indexed_db.rb +102 -0
- data/lib/selenium/devtools/v88/input.rb +148 -0
- data/lib/selenium/devtools/v88/inspector.rb +57 -0
- data/lib/selenium/devtools/v88/io.rb +61 -0
- data/lib/selenium/devtools/v88/layer_tree.rb +97 -0
- data/lib/selenium/devtools/v88/log.rb +68 -0
- data/lib/selenium/devtools/v88/media.rb +59 -0
- data/lib/selenium/devtools/v88/memory.rb +88 -0
- data/lib/selenium/devtools/v88/network.rb +247 -0
- data/lib/selenium/devtools/v88/overlay.rb +183 -0
- data/lib/selenium/devtools/v88/page.rb +376 -0
- data/lib/selenium/devtools/v88/performance.rb +65 -0
- data/lib/selenium/devtools/v88/profiler.rb +125 -0
- data/lib/selenium/devtools/v88/runtime.rb +197 -0
- data/lib/selenium/devtools/v88/schema.rb +48 -0
- data/lib/selenium/devtools/v88/security.rb +73 -0
- data/lib/selenium/devtools/v88/service_worker.rb +118 -0
- data/lib/selenium/devtools/v88/storage.rb +103 -0
- data/lib/selenium/devtools/v88/system_info.rb +52 -0
- data/lib/selenium/devtools/v88/target.rb +145 -0
- data/lib/selenium/devtools/v88/tethering.rb +57 -0
- data/lib/selenium/devtools/v88/tracing.rb +79 -0
- data/lib/selenium/devtools/v88/web_audio.rb +72 -0
- data/lib/selenium/devtools/v88/web_authn.rb +102 -0
- data/lib/selenium/devtools/version.rb +24 -0
- metadata +99 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a8d4baf8cb28ac01aa15465bc1323764fcfbd9404779927a4ea2e5ccb83c776d
|
4
|
+
data.tar.gz: eab4c095fe4d69071b27c725188097a6a18039ebd7c381b61f7c8ce9c4a09c44
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 25399b6de766c074408f4a2727ef758d4bc76b8ab2dad0ee9a5099f2b39473ba56948f00d59f8c46fb37b7db629b30a62881da0e9c5e19b0f09797bae4e27f24
|
7
|
+
data.tar.gz: 33ca199a13e7fbdf1347c3cf3a076ab0425ebb85af722978540b43160178f967ba3874632e2e69a9da9b71c33453b1b25fa5e34dc972c867fb8e80123e605c1a
|
@@ -0,0 +1 @@
|
|
1
|
+
Dir.glob('v88/devtools/*', &method(:require))
|
@@ -0,0 +1,73 @@
|
|
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 WebDriver
|
23
|
+
class DevTools
|
24
|
+
def accessibility
|
25
|
+
@accessibility ||= V88::Accessibility.new(self)
|
26
|
+
end
|
27
|
+
|
28
|
+
module V88
|
29
|
+
class Accessibility
|
30
|
+
|
31
|
+
def initialize(devtools)
|
32
|
+
@devtools = devtools
|
33
|
+
end
|
34
|
+
|
35
|
+
def on(event, &block)
|
36
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
37
|
+
@devtools.callbacks["Accessibility.#{event}"] << block
|
38
|
+
end
|
39
|
+
|
40
|
+
def disable
|
41
|
+
@devtools.send_cmd('Accessibility.disable')
|
42
|
+
end
|
43
|
+
|
44
|
+
def enable
|
45
|
+
@devtools.send_cmd('Accessibility.enable')
|
46
|
+
end
|
47
|
+
|
48
|
+
def get_partial_ax_tree(node_id: nil, backend_node_id: nil, object_id: nil, fetch_relatives: nil)
|
49
|
+
@devtools.send_cmd('Accessibility.getPartialAXTree',
|
50
|
+
nodeId: node_id,
|
51
|
+
backendNodeId: backend_node_id,
|
52
|
+
objectId: object_id,
|
53
|
+
fetchRelatives: fetch_relatives)
|
54
|
+
end
|
55
|
+
|
56
|
+
def get_full_ax_tree
|
57
|
+
@devtools.send_cmd('Accessibility.getFullAXTree')
|
58
|
+
end
|
59
|
+
|
60
|
+
def query_ax_tree(node_id: nil, backend_node_id: nil, object_id: nil, accessible_name: nil, role: nil)
|
61
|
+
@devtools.send_cmd('Accessibility.queryAXTree',
|
62
|
+
nodeId: node_id,
|
63
|
+
backendNodeId: backend_node_id,
|
64
|
+
objectId: object_id,
|
65
|
+
accessibleName: accessible_name,
|
66
|
+
role: role)
|
67
|
+
end
|
68
|
+
|
69
|
+
end # V88
|
70
|
+
end # Accessibility
|
71
|
+
end # DevTools
|
72
|
+
end # WebDriver
|
73
|
+
end # Selenium
|
@@ -0,0 +1,100 @@
|
|
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 WebDriver
|
23
|
+
class DevTools
|
24
|
+
def animation
|
25
|
+
@animation ||= V88::Animation.new(self)
|
26
|
+
end
|
27
|
+
|
28
|
+
module V88
|
29
|
+
class Animation
|
30
|
+
EVENTS = {
|
31
|
+
animation_canceled: 'animationCanceled',
|
32
|
+
animation_created: 'animationCreated',
|
33
|
+
animation_started: 'animationStarted',
|
34
|
+
}.freeze
|
35
|
+
|
36
|
+
def initialize(devtools)
|
37
|
+
@devtools = devtools
|
38
|
+
end
|
39
|
+
|
40
|
+
def on(event, &block)
|
41
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
42
|
+
@devtools.callbacks["Animation.#{event}"] << block
|
43
|
+
end
|
44
|
+
|
45
|
+
def disable
|
46
|
+
@devtools.send_cmd('Animation.disable')
|
47
|
+
end
|
48
|
+
|
49
|
+
def enable
|
50
|
+
@devtools.send_cmd('Animation.enable')
|
51
|
+
end
|
52
|
+
|
53
|
+
def get_current_time(id:)
|
54
|
+
@devtools.send_cmd('Animation.getCurrentTime',
|
55
|
+
id: id)
|
56
|
+
end
|
57
|
+
|
58
|
+
def get_playback_rate
|
59
|
+
@devtools.send_cmd('Animation.getPlaybackRate')
|
60
|
+
end
|
61
|
+
|
62
|
+
def release_animations(animations:)
|
63
|
+
@devtools.send_cmd('Animation.releaseAnimations',
|
64
|
+
animations: animations)
|
65
|
+
end
|
66
|
+
|
67
|
+
def resolve_animation(animation_id:)
|
68
|
+
@devtools.send_cmd('Animation.resolveAnimation',
|
69
|
+
animationId: animation_id)
|
70
|
+
end
|
71
|
+
|
72
|
+
def seek_animations(animations:, current_time:)
|
73
|
+
@devtools.send_cmd('Animation.seekAnimations',
|
74
|
+
animations: animations,
|
75
|
+
currentTime: current_time)
|
76
|
+
end
|
77
|
+
|
78
|
+
def set_paused(animations:, paused:)
|
79
|
+
@devtools.send_cmd('Animation.setPaused',
|
80
|
+
animations: animations,
|
81
|
+
paused: paused)
|
82
|
+
end
|
83
|
+
|
84
|
+
def set_playback_rate(playback_rate:)
|
85
|
+
@devtools.send_cmd('Animation.setPlaybackRate',
|
86
|
+
playbackRate: playback_rate)
|
87
|
+
end
|
88
|
+
|
89
|
+
def set_timing(animation_id:, duration:, delay:)
|
90
|
+
@devtools.send_cmd('Animation.setTiming',
|
91
|
+
animationId: animation_id,
|
92
|
+
duration: duration,
|
93
|
+
delay: delay)
|
94
|
+
end
|
95
|
+
|
96
|
+
end # V88
|
97
|
+
end # Animation
|
98
|
+
end # DevTools
|
99
|
+
end # WebDriver
|
100
|
+
end # Selenium
|
@@ -0,0 +1,66 @@
|
|
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 WebDriver
|
23
|
+
class DevTools
|
24
|
+
def application_cache
|
25
|
+
@application_cache ||= V88::ApplicationCache.new(self)
|
26
|
+
end
|
27
|
+
|
28
|
+
module V88
|
29
|
+
class ApplicationCache
|
30
|
+
EVENTS = {
|
31
|
+
application_cache_status_updated: 'applicationCacheStatusUpdated',
|
32
|
+
network_state_updated: 'networkStateUpdated',
|
33
|
+
}.freeze
|
34
|
+
|
35
|
+
def initialize(devtools)
|
36
|
+
@devtools = devtools
|
37
|
+
end
|
38
|
+
|
39
|
+
def on(event, &block)
|
40
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
41
|
+
@devtools.callbacks["ApplicationCache.#{event}"] << block
|
42
|
+
end
|
43
|
+
|
44
|
+
def enable
|
45
|
+
@devtools.send_cmd('ApplicationCache.enable')
|
46
|
+
end
|
47
|
+
|
48
|
+
def get_application_cache_for_frame(frame_id:)
|
49
|
+
@devtools.send_cmd('ApplicationCache.getApplicationCacheForFrame',
|
50
|
+
frameId: frame_id)
|
51
|
+
end
|
52
|
+
|
53
|
+
def get_frames_with_manifests
|
54
|
+
@devtools.send_cmd('ApplicationCache.getFramesWithManifests')
|
55
|
+
end
|
56
|
+
|
57
|
+
def get_manifest_for_frame(frame_id:)
|
58
|
+
@devtools.send_cmd('ApplicationCache.getManifestForFrame',
|
59
|
+
frameId: frame_id)
|
60
|
+
end
|
61
|
+
|
62
|
+
end # V88
|
63
|
+
end # ApplicationCache
|
64
|
+
end # DevTools
|
65
|
+
end # WebDriver
|
66
|
+
end # Selenium
|
@@ -0,0 +1,63 @@
|
|
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 WebDriver
|
23
|
+
class DevTools
|
24
|
+
def audits
|
25
|
+
@audits ||= V88::Audits.new(self)
|
26
|
+
end
|
27
|
+
|
28
|
+
module V88
|
29
|
+
class Audits
|
30
|
+
EVENTS = {
|
31
|
+
issue_added: 'issueAdded',
|
32
|
+
}.freeze
|
33
|
+
|
34
|
+
def initialize(devtools)
|
35
|
+
@devtools = devtools
|
36
|
+
end
|
37
|
+
|
38
|
+
def on(event, &block)
|
39
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
40
|
+
@devtools.callbacks["Audits.#{event}"] << block
|
41
|
+
end
|
42
|
+
|
43
|
+
def get_encoded_response(request_id:, encoding:, quality: nil, size_only: nil)
|
44
|
+
@devtools.send_cmd('Audits.getEncodedResponse',
|
45
|
+
requestId: request_id,
|
46
|
+
encoding: encoding,
|
47
|
+
quality: quality,
|
48
|
+
sizeOnly: size_only)
|
49
|
+
end
|
50
|
+
|
51
|
+
def disable
|
52
|
+
@devtools.send_cmd('Audits.disable')
|
53
|
+
end
|
54
|
+
|
55
|
+
def enable
|
56
|
+
@devtools.send_cmd('Audits.enable')
|
57
|
+
end
|
58
|
+
|
59
|
+
end # V88
|
60
|
+
end # Audits
|
61
|
+
end # DevTools
|
62
|
+
end # WebDriver
|
63
|
+
end # Selenium
|
@@ -0,0 +1,69 @@
|
|
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 WebDriver
|
23
|
+
class DevTools
|
24
|
+
def background_service
|
25
|
+
@background_service ||= V88::BackgroundService.new(self)
|
26
|
+
end
|
27
|
+
|
28
|
+
module V88
|
29
|
+
class BackgroundService
|
30
|
+
EVENTS = {
|
31
|
+
recording_state_changed: 'recordingStateChanged',
|
32
|
+
background_service_event_received: 'backgroundServiceEventReceived',
|
33
|
+
}.freeze
|
34
|
+
|
35
|
+
def initialize(devtools)
|
36
|
+
@devtools = devtools
|
37
|
+
end
|
38
|
+
|
39
|
+
def on(event, &block)
|
40
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
41
|
+
@devtools.callbacks["BackgroundService.#{event}"] << block
|
42
|
+
end
|
43
|
+
|
44
|
+
def start_observing(service:)
|
45
|
+
@devtools.send_cmd('BackgroundService.startObserving',
|
46
|
+
service: service)
|
47
|
+
end
|
48
|
+
|
49
|
+
def stop_observing(service:)
|
50
|
+
@devtools.send_cmd('BackgroundService.stopObserving',
|
51
|
+
service: service)
|
52
|
+
end
|
53
|
+
|
54
|
+
def set_recording(should_record:, service:)
|
55
|
+
@devtools.send_cmd('BackgroundService.setRecording',
|
56
|
+
shouldRecord: should_record,
|
57
|
+
service: service)
|
58
|
+
end
|
59
|
+
|
60
|
+
def clear_events(service:)
|
61
|
+
@devtools.send_cmd('BackgroundService.clearEvents',
|
62
|
+
service: service)
|
63
|
+
end
|
64
|
+
|
65
|
+
end # V88
|
66
|
+
end # BackgroundService
|
67
|
+
end # DevTools
|
68
|
+
end # WebDriver
|
69
|
+
end # Selenium
|
@@ -0,0 +1,130 @@
|
|
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 WebDriver
|
23
|
+
class DevTools
|
24
|
+
def browser
|
25
|
+
@browser ||= V88::Browser.new(self)
|
26
|
+
end
|
27
|
+
|
28
|
+
module V88
|
29
|
+
class Browser
|
30
|
+
|
31
|
+
def initialize(devtools)
|
32
|
+
@devtools = devtools
|
33
|
+
end
|
34
|
+
|
35
|
+
def on(event, &block)
|
36
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
37
|
+
@devtools.callbacks["Browser.#{event}"] << block
|
38
|
+
end
|
39
|
+
|
40
|
+
def set_permission(permission:, setting:, origin: nil, browser_context_id: nil)
|
41
|
+
@devtools.send_cmd('Browser.setPermission',
|
42
|
+
permission: permission,
|
43
|
+
setting: setting,
|
44
|
+
origin: origin,
|
45
|
+
browserContextId: browser_context_id)
|
46
|
+
end
|
47
|
+
|
48
|
+
def grant_permissions(permissions:, origin: nil, browser_context_id: nil)
|
49
|
+
@devtools.send_cmd('Browser.grantPermissions',
|
50
|
+
permissions: permissions,
|
51
|
+
origin: origin,
|
52
|
+
browserContextId: browser_context_id)
|
53
|
+
end
|
54
|
+
|
55
|
+
def reset_permissions(browser_context_id: nil)
|
56
|
+
@devtools.send_cmd('Browser.resetPermissions',
|
57
|
+
browserContextId: browser_context_id)
|
58
|
+
end
|
59
|
+
|
60
|
+
def set_download_behavior(behavior:, browser_context_id: nil, download_path: nil)
|
61
|
+
@devtools.send_cmd('Browser.setDownloadBehavior',
|
62
|
+
behavior: behavior,
|
63
|
+
browserContextId: browser_context_id,
|
64
|
+
downloadPath: download_path)
|
65
|
+
end
|
66
|
+
|
67
|
+
def close
|
68
|
+
@devtools.send_cmd('Browser.close')
|
69
|
+
end
|
70
|
+
|
71
|
+
def crash
|
72
|
+
@devtools.send_cmd('Browser.crash')
|
73
|
+
end
|
74
|
+
|
75
|
+
def crash_gpu_process
|
76
|
+
@devtools.send_cmd('Browser.crashGpuProcess')
|
77
|
+
end
|
78
|
+
|
79
|
+
def get_version
|
80
|
+
@devtools.send_cmd('Browser.getVersion')
|
81
|
+
end
|
82
|
+
|
83
|
+
def get_browser_command_line
|
84
|
+
@devtools.send_cmd('Browser.getBrowserCommandLine')
|
85
|
+
end
|
86
|
+
|
87
|
+
def get_histograms(query: nil, delta: nil)
|
88
|
+
@devtools.send_cmd('Browser.getHistograms',
|
89
|
+
query: query,
|
90
|
+
delta: delta)
|
91
|
+
end
|
92
|
+
|
93
|
+
def get_histogram(name:, delta: nil)
|
94
|
+
@devtools.send_cmd('Browser.getHistogram',
|
95
|
+
name: name,
|
96
|
+
delta: delta)
|
97
|
+
end
|
98
|
+
|
99
|
+
def get_window_bounds(window_id:)
|
100
|
+
@devtools.send_cmd('Browser.getWindowBounds',
|
101
|
+
windowId: window_id)
|
102
|
+
end
|
103
|
+
|
104
|
+
def get_window_for_target(target_id: nil)
|
105
|
+
@devtools.send_cmd('Browser.getWindowForTarget',
|
106
|
+
targetId: target_id)
|
107
|
+
end
|
108
|
+
|
109
|
+
def set_window_bounds(window_id:, bounds:)
|
110
|
+
@devtools.send_cmd('Browser.setWindowBounds',
|
111
|
+
windowId: window_id,
|
112
|
+
bounds: bounds)
|
113
|
+
end
|
114
|
+
|
115
|
+
def set_dock_tile(badge_label: nil, image: nil)
|
116
|
+
@devtools.send_cmd('Browser.setDockTile',
|
117
|
+
badgeLabel: badge_label,
|
118
|
+
image: image)
|
119
|
+
end
|
120
|
+
|
121
|
+
def execute_browser_command(command_id:)
|
122
|
+
@devtools.send_cmd('Browser.executeBrowserCommand',
|
123
|
+
commandId: command_id)
|
124
|
+
end
|
125
|
+
|
126
|
+
end # V88
|
127
|
+
end # Browser
|
128
|
+
end # DevTools
|
129
|
+
end # WebDriver
|
130
|
+
end # Selenium
|