selenium-webdriver 4.2.1 → 4.15.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/CHANGES +252 -0
- data/Gemfile +2 -0
- data/LICENSE +1 -1
- data/NOTICE +1 -1
- data/README.md +2 -2
- data/bin/linux/selenium-manager +0 -0
- data/bin/macos/selenium-manager +0 -0
- data/bin/windows/selenium-manager.exe +0 -0
- data/lib/selenium/server.rb +22 -30
- data/lib/selenium/webdriver/atoms/findElements.js +3 -4
- data/lib/selenium/webdriver/atoms/getAttribute.js +0 -0
- data/lib/selenium/webdriver/atoms/isDisplayed.js +0 -0
- data/lib/selenium/webdriver/atoms/mutationListener.js +0 -0
- data/lib/selenium/webdriver/atoms.rb +5 -3
- data/lib/selenium/webdriver/bidi/browsing_context.rb +88 -0
- data/lib/selenium/webdriver/{common/driver_extensions/has_network_connection.rb → bidi/browsing_context_info.rb} +10 -12
- data/lib/selenium/webdriver/bidi/log/base_log_entry.rb +35 -0
- data/lib/selenium/webdriver/bidi/log/console_log_entry.rb +35 -0
- data/lib/selenium/webdriver/{common/driver_extensions/has_location.rb → bidi/log/filter_by.rb} +14 -11
- data/lib/selenium/webdriver/bidi/log/generic_log_entry.rb +33 -0
- data/lib/selenium/webdriver/bidi/log/javascript_log_entry.rb +33 -0
- data/lib/selenium/webdriver/bidi/log_inspector.rb +143 -0
- data/lib/selenium/webdriver/bidi/navigate_result.rb +33 -0
- data/lib/selenium/webdriver/bidi/session.rb +13 -0
- data/lib/selenium/webdriver/bidi.rb +3 -2
- data/lib/selenium/webdriver/chrome/driver.rb +9 -29
- data/lib/selenium/webdriver/chrome/features.rb +8 -71
- data/lib/selenium/webdriver/chrome/options.rb +3 -223
- data/lib/selenium/webdriver/chrome/profile.rb +3 -83
- data/lib/selenium/webdriver/chrome/service.rb +4 -19
- data/lib/selenium/webdriver/chrome.rb +0 -16
- data/lib/selenium/webdriver/chromium/driver.rb +60 -0
- data/lib/selenium/webdriver/chromium/features.rb +99 -0
- data/lib/selenium/webdriver/chromium/options.rb +243 -0
- data/lib/selenium/webdriver/chromium/profile.rb +113 -0
- data/lib/selenium/webdriver/chromium.rb +29 -0
- data/lib/selenium/webdriver/common/action_builder.rb +11 -58
- data/lib/selenium/webdriver/common/child_process.rb +124 -0
- data/lib/selenium/webdriver/common/driver.rb +29 -79
- data/lib/selenium/webdriver/common/driver_extensions/downloads_files.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/full_page_screenshot.rb +0 -1
- data/lib/selenium/webdriver/common/driver_extensions/has_addons.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_apple_permissions.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_authentication.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_bidi.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_casting.rb +0 -1
- data/lib/selenium/webdriver/common/driver_extensions/has_cdp.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_context.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_debugger.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_devtools.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_file_downloads.rb +65 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_launching.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_log_events.rb +0 -1
- data/lib/selenium/webdriver/common/driver_extensions/has_network_conditions.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_network_interception.rb +2 -69
- data/lib/selenium/webdriver/common/driver_extensions/has_permissions.rb +0 -2
- data/lib/selenium/webdriver/common/driver_extensions/has_pinned_scripts.rb +0 -2
- data/lib/selenium/webdriver/common/driver_finder.rb +45 -0
- data/lib/selenium/webdriver/common/element.rb +7 -7
- data/lib/selenium/webdriver/common/error.rb +27 -4
- data/lib/selenium/webdriver/common/html5/shared_web_storage.rb +2 -2
- data/lib/selenium/webdriver/common/interactions/pointer_actions.rb +19 -36
- data/lib/selenium/webdriver/common/interactions/pointer_move.rb +2 -2
- data/lib/selenium/webdriver/common/interactions/scroll.rb +7 -5
- data/lib/selenium/webdriver/common/local_driver.rb +46 -0
- data/lib/selenium/webdriver/common/logger.rb +90 -25
- data/lib/selenium/webdriver/common/manager.rb +0 -27
- data/lib/selenium/webdriver/common/options.rb +17 -17
- data/lib/selenium/webdriver/common/platform.rb +4 -50
- data/lib/selenium/webdriver/common/port_prober.rb +1 -1
- data/lib/selenium/webdriver/common/profile_helper.rb +1 -1
- data/lib/selenium/webdriver/common/proxy.rb +2 -2
- data/lib/selenium/webdriver/common/selenium_manager.rb +134 -0
- data/lib/selenium/webdriver/common/service.rb +21 -30
- data/lib/selenium/webdriver/common/service_manager.rb +6 -12
- data/lib/selenium/webdriver/common/shadow_root.rb +1 -2
- data/lib/selenium/webdriver/common/socket_lock.rb +3 -3
- data/lib/selenium/webdriver/common/socket_poller.rb +1 -1
- data/lib/selenium/webdriver/common/takes_screenshot.rb +2 -3
- data/lib/selenium/webdriver/common/target_locator.rb +2 -3
- data/lib/selenium/webdriver/common/timeouts.rb +2 -2
- data/lib/selenium/webdriver/common/virtual_authenticator/credential.rb +85 -0
- data/lib/selenium/webdriver/common/virtual_authenticator/virtual_authenticator.rb +72 -0
- data/lib/selenium/webdriver/common/virtual_authenticator/virtual_authenticator_options.rb +62 -0
- data/lib/selenium/webdriver/common/websocket_connection.rb +22 -7
- data/lib/selenium/webdriver/common/window.rb +6 -6
- data/lib/selenium/webdriver/common/zipper.rb +1 -1
- data/lib/selenium/webdriver/common.rb +8 -3
- data/lib/selenium/webdriver/devtools/console_event.rb +0 -2
- data/lib/selenium/webdriver/devtools/exception_event.rb +0 -2
- data/lib/selenium/webdriver/devtools/mutation_event.rb +0 -2
- data/lib/selenium/webdriver/devtools/network_interceptor.rb +173 -0
- data/lib/selenium/webdriver/devtools/pinned_script.rb +0 -2
- data/lib/selenium/webdriver/devtools/request.rb +0 -2
- data/lib/selenium/webdriver/devtools/response.rb +0 -2
- data/lib/selenium/webdriver/devtools.rb +12 -2
- data/lib/selenium/webdriver/edge/driver.rb +9 -3
- data/lib/selenium/webdriver/edge/features.rb +7 -4
- data/lib/selenium/webdriver/edge/options.rb +17 -5
- data/lib/selenium/webdriver/edge/profile.rb +2 -2
- data/lib/selenium/webdriver/edge/service.rb +8 -7
- data/lib/selenium/webdriver/edge.rb +0 -2
- data/lib/selenium/webdriver/firefox/driver.rb +8 -2
- data/lib/selenium/webdriver/firefox/features.rb +10 -3
- data/lib/selenium/webdriver/firefox/options.rb +4 -15
- data/lib/selenium/webdriver/firefox/profile.rb +7 -7
- data/lib/selenium/webdriver/firefox/service.rb +0 -18
- data/lib/selenium/webdriver/firefox.rb +0 -14
- data/lib/selenium/webdriver/ie/driver.rb +7 -1
- data/lib/selenium/webdriver/{common/driver_extensions/has_remote_status.rb → ie/features.rb} +10 -7
- data/lib/selenium/webdriver/ie/options.rb +4 -3
- data/lib/selenium/webdriver/ie/service.rb +0 -22
- data/lib/selenium/webdriver/ie.rb +4 -17
- data/lib/selenium/webdriver/remote/{commands.rb → bridge/commands.rb} +10 -4
- data/lib/selenium/webdriver/remote/bridge.rb +48 -39
- data/lib/selenium/webdriver/remote/capabilities.rb +3 -53
- data/lib/selenium/webdriver/remote/driver.rb +35 -14
- data/lib/selenium/webdriver/remote/features.rb +75 -0
- data/lib/selenium/webdriver/remote/http/common.rb +3 -3
- data/lib/selenium/webdriver/remote/http/curb.rb +1 -3
- data/lib/selenium/webdriver/remote/http/default.rb +2 -2
- data/lib/selenium/webdriver/remote/response.rb +0 -1
- data/lib/selenium/webdriver/remote/server_error.rb +1 -1
- data/lib/selenium/webdriver/remote.rb +1 -1
- data/lib/selenium/webdriver/safari/driver.rb +7 -1
- data/lib/selenium/webdriver/safari/features.rb +5 -3
- data/lib/selenium/webdriver/safari/options.rb +5 -1
- data/lib/selenium/webdriver/safari/service.rb +10 -4
- data/lib/selenium/webdriver/safari.rb +1 -15
- data/lib/selenium/webdriver/support/color.rb +17 -17
- data/lib/selenium/webdriver/support/guards/guard.rb +6 -5
- data/lib/selenium/webdriver/support/guards/guard_condition.rb +0 -2
- data/lib/selenium/webdriver/support/guards.rb +1 -1
- data/lib/selenium/webdriver/support/relative_locator.rb +0 -1
- data/lib/selenium/webdriver/support/select.rb +3 -1
- data/lib/selenium/webdriver/version.rb +1 -1
- data/lib/selenium/webdriver.rb +5 -4
- data/selenium-webdriver.gemspec +10 -11
- metadata +51 -90
- data/lib/selenium/webdriver/remote/http/persistent.rb +0 -65
- data/lib/selenium/webdriver/support/cdp/domain.rb.erb +0 -63
- data/lib/selenium/webdriver/support/cdp_client_generator.rb +0 -108
data/lib/selenium/webdriver/{common/driver_extensions/has_location.rb → bidi/log/filter_by.rb}
RENAMED
|
@@ -17,21 +17,24 @@
|
|
|
17
17
|
# specific language governing permissions and limitations
|
|
18
18
|
# under the License.
|
|
19
19
|
|
|
20
|
-
# TODO: Deprecated; Delete after 4.0 release
|
|
21
20
|
module Selenium
|
|
22
21
|
module WebDriver
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
raise Error::UnsupportedOperationError, 'The W3C standard does not currently support getting location'
|
|
27
|
-
end
|
|
22
|
+
class BiDi
|
|
23
|
+
class FilterBy
|
|
24
|
+
attr_accessor :level
|
|
28
25
|
|
|
29
|
-
def
|
|
30
|
-
|
|
26
|
+
def initialize(level)
|
|
27
|
+
@level = level
|
|
31
28
|
end
|
|
32
|
-
alias_method :set_location, :location
|
|
33
29
|
|
|
34
|
-
|
|
35
|
-
|
|
30
|
+
def self.log_level(level = nil)
|
|
31
|
+
unless %w[debug error info warning].include?(level)
|
|
32
|
+
raise Error::WebDriverError,
|
|
33
|
+
"Valid log levels are 'debug', 'error', 'info' and 'warning'. Received: #{level}"
|
|
34
|
+
end
|
|
35
|
+
FilterBy.new(level)
|
|
36
|
+
end
|
|
37
|
+
end # FilterBy
|
|
38
|
+
end # BiDi
|
|
36
39
|
end # WebDriver
|
|
37
40
|
end # Selenium
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
module Selenium
|
|
21
|
+
module WebDriver
|
|
22
|
+
class BiDi
|
|
23
|
+
class GenericLogEntry < BaseLogEntry
|
|
24
|
+
attr_accessor :type
|
|
25
|
+
|
|
26
|
+
def initialize(level:, text:, timestamp:, type:, stack_trace:)
|
|
27
|
+
super(level: level, text: text, timestamp: timestamp, stack_trace: stack_trace)
|
|
28
|
+
@type = type
|
|
29
|
+
end
|
|
30
|
+
end # GenericLogEntry
|
|
31
|
+
end # BiDi
|
|
32
|
+
end # WebDriver
|
|
33
|
+
end # Selenium
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
module Selenium
|
|
21
|
+
module WebDriver
|
|
22
|
+
class BiDi
|
|
23
|
+
class JavascriptLogEntry < GenericLogEntry
|
|
24
|
+
attr_accessor :type
|
|
25
|
+
|
|
26
|
+
def initialize(level:, text:, timestamp:, type:, stack_trace:)
|
|
27
|
+
super(level: level, text: text, timestamp: timestamp, type: type, stack_trace: stack_trace)
|
|
28
|
+
@type = 'javascript'
|
|
29
|
+
end
|
|
30
|
+
end # JavascriptLogEntry
|
|
31
|
+
end # BiDi
|
|
32
|
+
end # WebDriver
|
|
33
|
+
end # Selenium
|
|
@@ -0,0 +1,143 @@
|
|
|
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
|
+
|
|
22
|
+
require_relative 'log/base_log_entry'
|
|
23
|
+
require_relative 'log/generic_log_entry'
|
|
24
|
+
require_relative 'log/console_log_entry'
|
|
25
|
+
require_relative 'log/javascript_log_entry'
|
|
26
|
+
require_relative 'log/filter_by'
|
|
27
|
+
|
|
28
|
+
module Selenium
|
|
29
|
+
module WebDriver
|
|
30
|
+
class BiDi
|
|
31
|
+
class LogInspector
|
|
32
|
+
EVENTS = {
|
|
33
|
+
entry_added: 'entryAdded'
|
|
34
|
+
}.freeze
|
|
35
|
+
|
|
36
|
+
LOG_LEVEL = {
|
|
37
|
+
DEBUG: 'debug',
|
|
38
|
+
ERROR: 'error',
|
|
39
|
+
INFO: 'info',
|
|
40
|
+
WARNING: 'warning'
|
|
41
|
+
}.freeze
|
|
42
|
+
|
|
43
|
+
def initialize(driver, browsing_context_ids = nil)
|
|
44
|
+
unless driver.capabilities.web_socket_url
|
|
45
|
+
raise Error::WebDriverError,
|
|
46
|
+
'WebDriver instance must support BiDi protocol'
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
@bidi = driver.bidi
|
|
50
|
+
@bidi.session.subscribe('log.entryAdded', browsing_context_ids)
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def on_console_entry(filter_by = nil, &block)
|
|
54
|
+
check_valid_filter(filter_by)
|
|
55
|
+
|
|
56
|
+
on_log do |params|
|
|
57
|
+
type = params['type']
|
|
58
|
+
console_log_events(params, filter_by, &block) if type.eql?('console')
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
def on_javascript_log(filter_by = nil, &block)
|
|
63
|
+
check_valid_filter(filter_by)
|
|
64
|
+
|
|
65
|
+
on_log do |params|
|
|
66
|
+
type = params['type']
|
|
67
|
+
javascript_log_events(params, filter_by, &block) if type.eql?('javascript')
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
def on_javascript_exception(&block)
|
|
72
|
+
on_log do |params|
|
|
73
|
+
type = params['type']
|
|
74
|
+
javascript_log_events(params, FilterBy.log_level('error'), &block) if type.eql?('javascript')
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
def on_log(filter_by = nil, &block)
|
|
79
|
+
unless filter_by.nil?
|
|
80
|
+
check_valid_filter(filter_by)
|
|
81
|
+
|
|
82
|
+
on(:entry_added) do |params|
|
|
83
|
+
yield(params) if params['level'] == filter_by.level
|
|
84
|
+
end
|
|
85
|
+
return
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
on(:entry_added, &block)
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
private
|
|
92
|
+
|
|
93
|
+
def on(event, &block)
|
|
94
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
|
95
|
+
@bidi.callbacks["log.#{event}"] << block
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def check_valid_filter(filter_by)
|
|
99
|
+
return if filter_by.nil? || filter_by.instance_of?(FilterBy)
|
|
100
|
+
|
|
101
|
+
raise "Pass valid FilterBy object. Received: #{filter_by.inspect}"
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
def console_log_events(params, filter_by)
|
|
105
|
+
event = ConsoleLogEntry.new(
|
|
106
|
+
level: params['level'],
|
|
107
|
+
text: params['text'],
|
|
108
|
+
timestamp: params['timestamp'],
|
|
109
|
+
type: params['type'],
|
|
110
|
+
method: params['method'],
|
|
111
|
+
realm: params['realm'],
|
|
112
|
+
args: params['args'],
|
|
113
|
+
stack_trace: params['stackTrace']
|
|
114
|
+
)
|
|
115
|
+
|
|
116
|
+
unless filter_by.nil?
|
|
117
|
+
yield(event) if params['level'] == filter_by.level
|
|
118
|
+
return
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
yield(event)
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
def javascript_log_events(params, filter_by)
|
|
125
|
+
event = JavascriptLogEntry.new(
|
|
126
|
+
level: params['level'],
|
|
127
|
+
text: params['text'],
|
|
128
|
+
timestamp: params['timestamp'],
|
|
129
|
+
type: params['type'],
|
|
130
|
+
stack_trace: params['stackTrace']
|
|
131
|
+
)
|
|
132
|
+
|
|
133
|
+
unless filter_by.nil?
|
|
134
|
+
yield(event) if params['level'] == filter_by.level
|
|
135
|
+
return
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
yield(event)
|
|
139
|
+
end
|
|
140
|
+
end # LogInspector
|
|
141
|
+
end # Bidi
|
|
142
|
+
end # WebDriver
|
|
143
|
+
end # Selenium
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
module Selenium
|
|
21
|
+
module WebDriver
|
|
22
|
+
class BiDi
|
|
23
|
+
class NavigateResult
|
|
24
|
+
attr_accessor :url, :navigation_id
|
|
25
|
+
|
|
26
|
+
def initialize(url:, navigation_id:)
|
|
27
|
+
@url = url
|
|
28
|
+
@navigation_id = navigation_id
|
|
29
|
+
end
|
|
30
|
+
end # NavigateResult
|
|
31
|
+
end # BiDi
|
|
32
|
+
end # WebDriver
|
|
33
|
+
end # Selenium
|
|
@@ -32,6 +32,19 @@ module Selenium
|
|
|
32
32
|
Status.new(status['ready'], status['message'])
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
+
def subscribe(events, browsing_contexts = nil)
|
|
36
|
+
events_list = Array(events)
|
|
37
|
+
browsing_contexts_list = browsing_contexts.nil? ? nil : Array(browsing_contexts)
|
|
38
|
+
|
|
39
|
+
@bidi.send_cmd('session.subscribe', events: events_list, contexts: browsing_contexts_list)
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
def unsubscribe(events, browsing_contexts = nil)
|
|
43
|
+
events_list = Array(events)
|
|
44
|
+
browsing_contexts_list = browsing_contexts.nil? ? nil : Array(browsing_contexts)
|
|
45
|
+
|
|
46
|
+
@bidi.send_cmd('session.unsubscribe', events: events_list, contexts: browsing_contexts_list)
|
|
47
|
+
end
|
|
35
48
|
end # Session
|
|
36
49
|
end # BiDi
|
|
37
50
|
end # WebDriver
|
|
@@ -21,6 +21,8 @@ module Selenium
|
|
|
21
21
|
module WebDriver
|
|
22
22
|
class BiDi
|
|
23
23
|
autoload :Session, 'selenium/webdriver/bidi/session'
|
|
24
|
+
autoload :LogInspector, 'selenium/webdriver/bidi/log_inspector'
|
|
25
|
+
autoload :BrowsingContext, 'selenium/webdriver/bidi/browsing_context'
|
|
24
26
|
|
|
25
27
|
def initialize(url:)
|
|
26
28
|
@ws = WebSocketConnection.new(url: url)
|
|
@@ -35,7 +37,7 @@ module Selenium
|
|
|
35
37
|
end
|
|
36
38
|
|
|
37
39
|
def session
|
|
38
|
-
Session.new(self)
|
|
40
|
+
@session ||= Session.new(self)
|
|
39
41
|
end
|
|
40
42
|
|
|
41
43
|
def send_cmd(method, **params)
|
|
@@ -49,7 +51,6 @@ module Selenium
|
|
|
49
51
|
def error_message(message)
|
|
50
52
|
"#{message['error']}: #{message['message']}\n#{message['stacktrace']}"
|
|
51
53
|
end
|
|
52
|
-
|
|
53
54
|
end # BiDi
|
|
54
55
|
end # WebDriver
|
|
55
56
|
end # Selenium
|
|
@@ -17,31 +17,23 @@
|
|
|
17
17
|
# specific language governing permissions and limitations
|
|
18
18
|
# under the License.
|
|
19
19
|
|
|
20
|
+
require 'selenium/webdriver/chromium/driver'
|
|
21
|
+
|
|
20
22
|
module Selenium
|
|
21
23
|
module WebDriver
|
|
22
24
|
module Chrome
|
|
23
|
-
|
|
24
25
|
#
|
|
25
26
|
# Driver implementation for Chrome.
|
|
26
27
|
# @api private
|
|
27
28
|
#
|
|
28
29
|
|
|
29
|
-
class Driver <
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
DriverExtensions::HasLocation,
|
|
37
|
-
DriverExtensions::HasPermissions,
|
|
38
|
-
DriverExtensions::DownloadsFiles,
|
|
39
|
-
DriverExtensions::HasDevTools,
|
|
40
|
-
DriverExtensions::HasAuthentication,
|
|
41
|
-
DriverExtensions::HasLogs,
|
|
42
|
-
DriverExtensions::HasLogEvents,
|
|
43
|
-
DriverExtensions::HasPinnedScripts,
|
|
44
|
-
DriverExtensions::PrintsPage].freeze
|
|
30
|
+
class Driver < Chromium::Driver
|
|
31
|
+
include LocalDriver
|
|
32
|
+
|
|
33
|
+
def initialize(options: nil, service: nil, url: nil, **opts)
|
|
34
|
+
caps, url = initialize_local_driver(options, service, url)
|
|
35
|
+
super(caps: caps, url: url, **opts)
|
|
36
|
+
end
|
|
45
37
|
|
|
46
38
|
def browser
|
|
47
39
|
:chrome
|
|
@@ -49,21 +41,9 @@ module Selenium
|
|
|
49
41
|
|
|
50
42
|
private
|
|
51
43
|
|
|
52
|
-
def devtools_url
|
|
53
|
-
uri = URI(devtools_address)
|
|
54
|
-
response = Net::HTTP.get(uri.hostname, '/json/version', uri.port)
|
|
55
|
-
|
|
56
|
-
JSON.parse(response)['webSocketDebuggerUrl']
|
|
57
|
-
end
|
|
58
|
-
|
|
59
|
-
def devtools_version
|
|
60
|
-
Integer(capabilities.browser_version.split('.').first)
|
|
61
|
-
end
|
|
62
|
-
|
|
63
44
|
def devtools_address
|
|
64
45
|
"http://#{capabilities['goog:chromeOptions']['debuggerAddress']}"
|
|
65
46
|
end
|
|
66
|
-
|
|
67
47
|
end # Driver
|
|
68
48
|
end # Chrome
|
|
69
49
|
end # WebDriver
|
|
@@ -17,93 +17,30 @@
|
|
|
17
17
|
# specific language governing permissions and limitations
|
|
18
18
|
# under the License.
|
|
19
19
|
|
|
20
|
+
require 'selenium/webdriver/chromium/features'
|
|
21
|
+
|
|
20
22
|
module Selenium
|
|
21
23
|
module WebDriver
|
|
22
24
|
module Chrome
|
|
23
25
|
module Features
|
|
26
|
+
include WebDriver::Chromium::Features
|
|
24
27
|
|
|
25
28
|
CHROME_COMMANDS = {
|
|
26
|
-
launch_app: [:post, 'session/:session_id/chromium/launch_app'],
|
|
27
29
|
get_cast_sinks: [:get, 'session/:session_id/goog/cast/get_sinks'],
|
|
28
30
|
set_cast_sink_to_use: [:post, 'session/:session_id/goog/cast/set_sink_to_use'],
|
|
29
31
|
start_cast_tab_mirroring: [:post, 'session/:session_id/goog/cast/start_tab_mirroring'],
|
|
30
32
|
start_cast_desktop_mirroring: [:post, 'session/:session_id/goog/cast/start_desktop_mirroring'],
|
|
31
33
|
get_cast_issue_message: [:get, 'session/:session_id/goog/cast/get_issue_message'],
|
|
32
34
|
stop_casting: [:post, 'session/:session_id/goog/cast/stop_casting'],
|
|
33
|
-
|
|
34
|
-
set_network_conditions: [:post, 'session/:session_id/chromium/network_conditions'],
|
|
35
|
-
delete_network_conditions: [:delete, 'session/:session_id/chromium/network_conditions'],
|
|
36
|
-
set_permission: [:post, 'session/:session_id/permissions'],
|
|
37
|
-
send_command: [:post, 'session/:session_id/goog/cdp/execute'],
|
|
38
|
-
get_available_log_types: [:get, 'session/:session_id/se/log/types'],
|
|
39
|
-
get_log: [:post, 'session/:session_id/se/log']
|
|
35
|
+
send_command: [:post, 'session/:session_id/goog/cdp/execute']
|
|
40
36
|
}.freeze
|
|
41
37
|
|
|
42
|
-
def
|
|
43
|
-
CHROME_COMMANDS
|
|
44
|
-
end
|
|
45
|
-
|
|
46
|
-
def launch_app(id)
|
|
47
|
-
execute :launch_app, {}, {id: id}
|
|
48
|
-
end
|
|
49
|
-
|
|
50
|
-
def cast_sinks
|
|
51
|
-
execute :get_cast_sinks
|
|
52
|
-
end
|
|
53
|
-
|
|
54
|
-
def cast_sink_to_use=(name)
|
|
55
|
-
execute :set_cast_sink_to_use, {}, {sinkName: name}
|
|
56
|
-
end
|
|
57
|
-
|
|
58
|
-
def cast_issue_message
|
|
59
|
-
execute :cast_issue_message
|
|
60
|
-
end
|
|
61
|
-
|
|
62
|
-
def start_cast_tab_mirroring(name)
|
|
63
|
-
execute :start_cast_tab_mirroring, {}, {sinkName: name}
|
|
64
|
-
end
|
|
65
|
-
|
|
66
|
-
def start_cast_desktop_mirroring(name)
|
|
67
|
-
execute :start_cast_desktop_mirroring, {}, {sinkName: name}
|
|
68
|
-
end
|
|
69
|
-
|
|
70
|
-
def stop_casting(name)
|
|
71
|
-
execute :stop_casting, {}, {sinkName: name}
|
|
72
|
-
end
|
|
73
|
-
|
|
74
|
-
def set_permission(name, value)
|
|
75
|
-
execute :set_permission, {}, {descriptor: {name: name}, state: value}
|
|
76
|
-
end
|
|
77
|
-
|
|
78
|
-
def network_conditions
|
|
79
|
-
execute :get_network_conditions
|
|
80
|
-
end
|
|
81
|
-
|
|
82
|
-
def network_conditions=(conditions)
|
|
83
|
-
execute :set_network_conditions, {}, {network_conditions: conditions}
|
|
38
|
+
def command_list
|
|
39
|
+
CHROME_COMMANDS.merge(CHROMIUM_COMMANDS).merge(self.class::COMMANDS)
|
|
84
40
|
end
|
|
85
41
|
|
|
86
|
-
def
|
|
87
|
-
|
|
88
|
-
end
|
|
89
|
-
|
|
90
|
-
def send_command(command_params)
|
|
91
|
-
execute :send_command, {}, command_params
|
|
92
|
-
end
|
|
93
|
-
|
|
94
|
-
def available_log_types
|
|
95
|
-
types = execute :get_available_log_types
|
|
96
|
-
Array(types).map(&:to_sym)
|
|
97
|
-
end
|
|
98
|
-
|
|
99
|
-
def log(type)
|
|
100
|
-
data = execute :get_log, {}, {type: type.to_s}
|
|
101
|
-
|
|
102
|
-
Array(data).map do |l|
|
|
103
|
-
LogEntry.new l.fetch('level', 'UNKNOWN'), l.fetch('timestamp'), l.fetch('message')
|
|
104
|
-
rescue KeyError
|
|
105
|
-
next
|
|
106
|
-
end
|
|
42
|
+
def commands(command)
|
|
43
|
+
command_list[command]
|
|
107
44
|
end
|
|
108
45
|
end # Bridge
|
|
109
46
|
end # Chrome
|