selenium-webdriver 3.142.6 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGES +369 -5
- data/Gemfile +3 -1
- data/LICENSE +1 -1
- data/NOTICE +2 -0
- data/README.md +4 -5
- data/lib/selenium/server.rb +69 -63
- data/lib/selenium/webdriver/atoms/findElements.js +122 -0
- data/lib/selenium/webdriver/atoms/getAttribute.js +100 -7
- data/lib/selenium/webdriver/atoms/isDisplayed.js +76 -78
- data/lib/selenium/webdriver/atoms/mutationListener.js +55 -0
- data/lib/selenium/webdriver/chrome/driver.rb +26 -70
- data/lib/selenium/webdriver/chrome/{bridge.rb → features.rb} +50 -12
- data/lib/selenium/webdriver/chrome/options.rb +128 -53
- data/lib/selenium/webdriver/chrome/profile.rb +8 -5
- data/lib/selenium/webdriver/chrome/service.rb +8 -15
- data/lib/selenium/webdriver/chrome.rb +10 -9
- data/lib/selenium/webdriver/common/action_builder.rb +97 -249
- data/lib/selenium/webdriver/common/driver.rb +112 -23
- data/lib/selenium/webdriver/common/driver_extensions/full_page_screenshot.rb +43 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_apple_permissions.rb +51 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_authentication.rb +89 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_casting.rb +77 -0
- data/lib/selenium/webdriver/common/driver_extensions/{has_touch_screen.rb → has_cdp.rb} +10 -8
- data/lib/selenium/webdriver/common/driver_extensions/has_context.rb +45 -0
- data/lib/selenium/webdriver/{firefox/util.rb → common/driver_extensions/has_devtools.rb} +16 -19
- data/lib/selenium/webdriver/common/driver_extensions/has_launching.rb +38 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_location.rb +5 -8
- data/lib/selenium/webdriver/common/driver_extensions/has_log_events.rb +144 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_logs.rb +30 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_network_conditions.rb +17 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_network_connection.rb +6 -27
- data/lib/selenium/webdriver/common/driver_extensions/has_network_interception.rb +136 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_permissions.rb +11 -11
- data/lib/selenium/webdriver/common/driver_extensions/has_pinned_scripts.rb +77 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_remote_status.rb +1 -0
- data/lib/selenium/webdriver/common/driver_extensions/{rotatable.rb → prints_page.rb} +18 -20
- data/lib/selenium/webdriver/common/element.rb +82 -22
- data/lib/selenium/webdriver/common/error.rb +32 -196
- data/lib/selenium/webdriver/common/interactions/interaction.rb +4 -1
- data/lib/selenium/webdriver/common/interactions/key_actions.rb +5 -5
- data/lib/selenium/webdriver/common/interactions/pointer_actions.rb +13 -13
- data/lib/selenium/webdriver/common/log_entry.rb +2 -2
- data/lib/selenium/webdriver/common/logger.rb +50 -15
- data/lib/selenium/webdriver/common/manager.rb +15 -15
- data/lib/selenium/webdriver/common/options.rb +184 -0
- data/lib/selenium/webdriver/common/platform.rb +6 -1
- data/lib/selenium/webdriver/common/port_prober.rb +4 -6
- data/lib/selenium/webdriver/common/profile_helper.rb +11 -9
- data/lib/selenium/webdriver/common/proxy.rb +6 -3
- data/lib/selenium/webdriver/common/search_context.rb +7 -3
- data/lib/selenium/webdriver/common/service.rb +17 -125
- data/lib/selenium/webdriver/common/service_manager.rb +151 -0
- data/lib/selenium/webdriver/common/shadow_root.rb +87 -0
- data/lib/selenium/webdriver/common/socket_lock.rb +2 -2
- data/lib/selenium/webdriver/common/socket_poller.rb +2 -2
- data/lib/selenium/webdriver/common/takes_screenshot.rb +66 -0
- data/lib/selenium/webdriver/common/target_locator.rb +32 -4
- data/lib/selenium/webdriver/common/timeouts.rb +31 -4
- data/lib/selenium/webdriver/common/wait.rb +1 -1
- data/lib/selenium/webdriver/common/window.rb +0 -4
- data/lib/selenium/webdriver/common/zipper.rb +3 -9
- data/lib/selenium/webdriver/common.rb +24 -17
- data/lib/selenium/webdriver/devtools/console_event.rb +38 -0
- data/lib/selenium/webdriver/devtools/exception_event.rb +36 -0
- data/lib/selenium/webdriver/devtools/mutation_event.rb +37 -0
- data/lib/selenium/webdriver/devtools/pinned_script.rb +59 -0
- data/lib/selenium/webdriver/devtools/request.rb +67 -0
- data/lib/selenium/webdriver/devtools/response.rb +66 -0
- data/lib/selenium/webdriver/devtools.rb +193 -0
- data/lib/selenium/webdriver/edge/driver.rb +7 -29
- data/lib/selenium/webdriver/edge/features.rb +44 -0
- data/lib/selenium/webdriver/edge/options.rb +11 -48
- data/lib/selenium/webdriver/{common/w3c_manager.rb → edge/profile.rb} +7 -19
- data/lib/selenium/webdriver/edge/service.rb +10 -26
- data/lib/selenium/webdriver/edge.rb +11 -14
- data/lib/selenium/webdriver/firefox/driver.rb +31 -19
- data/lib/selenium/webdriver/firefox/extension.rb +8 -0
- data/lib/selenium/webdriver/firefox/features.rb +66 -0
- data/lib/selenium/webdriver/firefox/options.rb +71 -50
- data/lib/selenium/webdriver/firefox/profile.rb +21 -71
- data/lib/selenium/webdriver/firefox/service.rb +5 -9
- data/lib/selenium/webdriver/firefox.rb +22 -20
- data/lib/selenium/webdriver/ie/driver.rb +1 -47
- data/lib/selenium/webdriver/ie/options.rb +15 -46
- data/lib/selenium/webdriver/ie/service.rb +13 -15
- data/lib/selenium/webdriver/ie.rb +8 -7
- data/lib/selenium/webdriver/remote/bridge.rb +561 -86
- data/lib/selenium/webdriver/remote/capabilities.rb +159 -123
- data/lib/selenium/webdriver/remote/commands.rb +163 -0
- data/lib/selenium/webdriver/remote/driver.rb +22 -12
- data/lib/selenium/webdriver/remote/http/common.rb +0 -5
- data/lib/selenium/webdriver/remote/http/default.rb +17 -20
- data/lib/selenium/webdriver/remote/http/persistent.rb +11 -6
- data/lib/selenium/webdriver/remote/response.rb +16 -47
- data/lib/selenium/webdriver/remote.rb +15 -12
- data/lib/selenium/webdriver/safari/driver.rb +3 -31
- data/lib/selenium/webdriver/safari/{bridge.rb → features.rb} +3 -3
- data/lib/selenium/webdriver/safari/options.rb +10 -29
- data/lib/selenium/webdriver/safari/service.rb +4 -8
- data/lib/selenium/webdriver/safari.rb +17 -9
- data/lib/selenium/webdriver/support/block_event_listener.rb +1 -1
- data/lib/selenium/webdriver/support/cdp/domain.rb.erb +63 -0
- data/lib/selenium/webdriver/support/cdp_client_generator.rb +108 -0
- data/lib/selenium/webdriver/support/color.rb +2 -2
- data/lib/selenium/webdriver/support/event_firing_bridge.rb +4 -4
- data/lib/selenium/webdriver/support/guards/guard.rb +89 -0
- data/lib/selenium/webdriver/{firefox/marionette/bridge.rb → support/guards/guard_condition.rb} +22 -19
- data/lib/selenium/webdriver/support/guards.rb +95 -0
- data/lib/selenium/webdriver/support/relative_locator.rb +51 -0
- data/lib/selenium/webdriver/support/select.rb +3 -3
- data/lib/selenium/webdriver/support.rb +1 -0
- data/lib/selenium/webdriver/version.rb +1 -1
- data/lib/selenium/webdriver.rb +13 -13
- data/selenium-webdriver.gemspec +28 -12
- metadata +129 -69
- data/lib/selenium/webdriver/common/bridge_helper.rb +0 -82
- data/lib/selenium/webdriver/common/driver_extensions/takes_screenshot.rb +0 -64
- data/lib/selenium/webdriver/common/keyboard.rb +0 -70
- data/lib/selenium/webdriver/common/mouse.rb +0 -89
- data/lib/selenium/webdriver/common/touch_action_builder.rb +0 -78
- data/lib/selenium/webdriver/common/touch_screen.rb +0 -123
- data/lib/selenium/webdriver/common/w3c_action_builder.rb +0 -212
- data/lib/selenium/webdriver/edge/bridge.rb +0 -76
- data/lib/selenium/webdriver/firefox/binary.rb +0 -187
- data/lib/selenium/webdriver/firefox/extension/prefs.json +0 -69
- data/lib/selenium/webdriver/firefox/extension/webdriver.xpi +0 -0
- data/lib/selenium/webdriver/firefox/launcher.rb +0 -111
- data/lib/selenium/webdriver/firefox/legacy/driver.rb +0 -83
- data/lib/selenium/webdriver/firefox/marionette/driver.rb +0 -90
- data/lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so +0 -0
- data/lib/selenium/webdriver/firefox/native/linux/x86/x_ignore_nofocus.so +0 -0
- data/lib/selenium/webdriver/remote/oss/bridge.rb +0 -594
- data/lib/selenium/webdriver/remote/oss/commands.rb +0 -223
- data/lib/selenium/webdriver/remote/w3c/bridge.rb +0 -605
- data/lib/selenium/webdriver/remote/w3c/capabilities.rb +0 -310
- data/lib/selenium/webdriver/remote/w3c/commands.rb +0 -157
@@ -0,0 +1,43 @@
|
|
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
|
+
module DriverExtensions
|
23
|
+
module FullPageScreenshot
|
24
|
+
#
|
25
|
+
# Save a PNG screenshot of the full page to the given path
|
26
|
+
#
|
27
|
+
# @api public
|
28
|
+
#
|
29
|
+
|
30
|
+
def save_full_page_screenshot(path)
|
31
|
+
save_screenshot(path, full_page: true)
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
def full_screenshot
|
37
|
+
@bridge.full_screenshot
|
38
|
+
end
|
39
|
+
|
40
|
+
end # FullPageScreenshot
|
41
|
+
end # DriverExtensions
|
42
|
+
end # WebDriver
|
43
|
+
end # Selenium
|
@@ -0,0 +1,51 @@
|
|
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
|
+
module DriverExtensions
|
23
|
+
module HasApplePermissions
|
24
|
+
|
25
|
+
#
|
26
|
+
# Returns permissions.
|
27
|
+
#
|
28
|
+
# @return [Hash]
|
29
|
+
#
|
30
|
+
|
31
|
+
def permissions
|
32
|
+
@bridge.permissions
|
33
|
+
end
|
34
|
+
|
35
|
+
#
|
36
|
+
# Sets permissions.
|
37
|
+
#
|
38
|
+
# @example
|
39
|
+
# driver.permissions = {'getUserMedia' => true}
|
40
|
+
#
|
41
|
+
# @param [Hash<Symbol, Boolean>] permissions
|
42
|
+
#
|
43
|
+
|
44
|
+
def permissions=(permissions)
|
45
|
+
@bridge.permissions = permissions
|
46
|
+
end
|
47
|
+
|
48
|
+
end # HasPermissions
|
49
|
+
end # DriverExtensions
|
50
|
+
end # WebDriver
|
51
|
+
end # Selenium
|
@@ -0,0 +1,89 @@
|
|
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
|
+
module DriverExtensions
|
23
|
+
module HasAuthentication
|
24
|
+
|
25
|
+
#
|
26
|
+
# Registers basic authentication handler which is automatically
|
27
|
+
# used whenever browser gets an authentication required response.
|
28
|
+
# This currently relies on DevTools so is only supported in
|
29
|
+
# Chromium browsers.
|
30
|
+
#
|
31
|
+
# @example Authenticate any request
|
32
|
+
# driver.register(username: 'admin', password: '123456')
|
33
|
+
#
|
34
|
+
# @example Authenticate based on URL
|
35
|
+
# driver.register(username: 'admin1', password: '123456', uri: /mysite1\.com/)
|
36
|
+
# driver.register(username: 'admin2', password: '123456', uri: /mysite2\.com/)
|
37
|
+
#
|
38
|
+
# @param [String] username
|
39
|
+
# @param [String] password
|
40
|
+
# @param [Regexp] uri to associate the credentials with
|
41
|
+
#
|
42
|
+
|
43
|
+
def register(username:, password:, uri: //)
|
44
|
+
auth_handlers << {username: username, password: password, uri: uri}
|
45
|
+
|
46
|
+
devtools.network.set_cache_disabled(cache_disabled: true)
|
47
|
+
devtools.fetch.on(:auth_required) do |params|
|
48
|
+
authenticate(params['requestId'], params.dig('request', 'url'))
|
49
|
+
end
|
50
|
+
devtools.fetch.on(:request_paused) do |params|
|
51
|
+
devtools.fetch.continue_request(request_id: params['requestId'])
|
52
|
+
end
|
53
|
+
devtools.fetch.enable(handle_auth_requests: true)
|
54
|
+
end
|
55
|
+
|
56
|
+
private
|
57
|
+
|
58
|
+
def auth_handlers
|
59
|
+
@auth_handlers ||= []
|
60
|
+
end
|
61
|
+
|
62
|
+
def authenticate(request_id, url)
|
63
|
+
credentials = auth_handlers.find do |handler|
|
64
|
+
url.match?(handler[:uri])
|
65
|
+
end
|
66
|
+
|
67
|
+
if credentials
|
68
|
+
devtools.fetch.continue_with_auth(
|
69
|
+
request_id: request_id,
|
70
|
+
auth_challenge_response: {
|
71
|
+
response: 'ProvideCredentials',
|
72
|
+
username: credentials[:username],
|
73
|
+
password: credentials[:password]
|
74
|
+
}
|
75
|
+
)
|
76
|
+
else
|
77
|
+
devtools.fetch.continue_with_auth(
|
78
|
+
request_id: request_id,
|
79
|
+
auth_challenge_response: {
|
80
|
+
response: 'CancelAuth'
|
81
|
+
}
|
82
|
+
)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
end # HasAuthentication
|
87
|
+
end # DriverExtensions
|
88
|
+
end # WebDriver
|
89
|
+
end # Selenium
|
@@ -0,0 +1,77 @@
|
|
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
|
+
module DriverExtensions
|
23
|
+
module HasCasting
|
24
|
+
|
25
|
+
#
|
26
|
+
# What devices ("sinks") are available to be cast to.
|
27
|
+
#
|
28
|
+
# @return [Array] list of sinks available for casting with id and name values
|
29
|
+
#
|
30
|
+
|
31
|
+
def cast_sinks
|
32
|
+
@bridge.cast_sinks
|
33
|
+
end
|
34
|
+
|
35
|
+
#
|
36
|
+
# Sets a specific sink, using its name, as a Cast session receiver target.
|
37
|
+
#
|
38
|
+
# @param [String] name the sink to use as the target
|
39
|
+
#
|
40
|
+
|
41
|
+
def cast_sink_to_use=(name)
|
42
|
+
@bridge.cast_sink_to_use = name
|
43
|
+
end
|
44
|
+
|
45
|
+
#
|
46
|
+
# Starts a tab mirroring session on a specific receiver target.
|
47
|
+
#
|
48
|
+
# @param [String] name the sink to use as the target
|
49
|
+
#
|
50
|
+
|
51
|
+
def start_cast_tab_mirroring(name)
|
52
|
+
@bridge.start_cast_tab_mirroring(name)
|
53
|
+
end
|
54
|
+
|
55
|
+
#
|
56
|
+
# Gets error messages when there is any issue in a Cast session.
|
57
|
+
#
|
58
|
+
# @return [String] the error message
|
59
|
+
#
|
60
|
+
|
61
|
+
def cast_issue_message
|
62
|
+
@bridge.cast_issue_message
|
63
|
+
end
|
64
|
+
|
65
|
+
#
|
66
|
+
# Stops the existing Cast session on a specific receiver target.
|
67
|
+
#
|
68
|
+
# @param [String] name the sink to stop the Cast session
|
69
|
+
#
|
70
|
+
|
71
|
+
def stop_casting(name)
|
72
|
+
@bridge.stop_casting(name)
|
73
|
+
end
|
74
|
+
end # HasCasting
|
75
|
+
end # DriverExtensions
|
76
|
+
end # WebDriver
|
77
|
+
end # Selenium
|
@@ -20,17 +20,19 @@
|
|
20
20
|
module Selenium
|
21
21
|
module WebDriver
|
22
22
|
module DriverExtensions
|
23
|
-
module
|
24
|
-
def touch
|
25
|
-
TouchActionBuilder.new Mouse.new(@bridge), Keyboard.new(@bridge), touch_screen
|
26
|
-
end
|
23
|
+
module HasCDP
|
27
24
|
|
28
|
-
|
25
|
+
#
|
26
|
+
# Returns network conditions.
|
27
|
+
#
|
28
|
+
# @return [Hash]
|
29
|
+
#
|
29
30
|
|
30
|
-
def
|
31
|
-
|
31
|
+
def execute_cdp(cmd, **params)
|
32
|
+
@bridge.send_command(cmd: cmd, params: params)
|
32
33
|
end
|
33
|
-
|
34
|
+
|
35
|
+
end # HasCDP
|
34
36
|
end # DriverExtensions
|
35
37
|
end # WebDriver
|
36
38
|
end # Selenium
|
@@ -0,0 +1,45 @@
|
|
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
|
+
module DriverExtensions
|
23
|
+
module HasContext
|
24
|
+
|
25
|
+
#
|
26
|
+
# Sets the context that Selenium commands are running in using
|
27
|
+
# a `with` statement. The state of the context on the server is
|
28
|
+
# saved before entering the block, and restored upon exiting it.
|
29
|
+
#
|
30
|
+
# @param [String] name which permission to set
|
31
|
+
# @param [String] value what to set the permission to
|
32
|
+
#
|
33
|
+
|
34
|
+
def context=(value)
|
35
|
+
@bridge.context = value
|
36
|
+
end
|
37
|
+
|
38
|
+
def context
|
39
|
+
@bridge.context
|
40
|
+
end
|
41
|
+
|
42
|
+
end # HasContext
|
43
|
+
end # DriverExtensions
|
44
|
+
end # WebDriver
|
45
|
+
end # Selenium
|
@@ -19,28 +19,25 @@
|
|
19
19
|
|
20
20
|
module Selenium
|
21
21
|
module WebDriver
|
22
|
-
module
|
23
|
-
|
24
|
-
module Util
|
25
|
-
module_function
|
22
|
+
module DriverExtensions
|
23
|
+
module HasDevTools
|
26
24
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
25
|
+
#
|
26
|
+
# Retrieves connection to DevTools.
|
27
|
+
#
|
28
|
+
# @return [DevTools]
|
29
|
+
#
|
30
|
+
|
31
|
+
def devtools
|
32
|
+
@devtools ||= begin
|
33
|
+
require 'selenium/devtools'
|
34
|
+
Selenium::DevTools.version ||= devtools_version
|
35
|
+
Selenium::DevTools.load_version
|
36
|
+
Selenium::WebDriver::DevTools.new(url: devtools_url)
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
|
-
|
41
|
-
|
42
|
-
end
|
43
|
-
end # Util
|
44
|
-
end # Firefox
|
40
|
+
end # HasDevTools
|
41
|
+
end # DriverExtensions
|
45
42
|
end # WebDriver
|
46
43
|
end # Selenium
|
@@ -0,0 +1,38 @@
|
|
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
|
+
module DriverExtensions
|
23
|
+
module HasLaunching
|
24
|
+
|
25
|
+
#
|
26
|
+
# Launches Chromium app specified by id.
|
27
|
+
#
|
28
|
+
# @param [String] id
|
29
|
+
#
|
30
|
+
|
31
|
+
def launch_app(id)
|
32
|
+
@bridge.launch_app(id)
|
33
|
+
end
|
34
|
+
|
35
|
+
end # HasLaunching
|
36
|
+
end # DriverExtensions
|
37
|
+
end # WebDriver
|
38
|
+
end # Selenium
|
@@ -17,23 +17,20 @@
|
|
17
17
|
# specific language governing permissions and limitations
|
18
18
|
# under the License.
|
19
19
|
|
20
|
+
# TODO: Deprecated; Delete after 4.0 release
|
20
21
|
module Selenium
|
21
22
|
module WebDriver
|
22
23
|
module DriverExtensions
|
23
24
|
module HasLocation
|
24
25
|
def location
|
25
|
-
|
26
|
+
raise Error::UnsupportedOperationError, 'The W3C standard does not currently support getting location'
|
26
27
|
end
|
27
28
|
|
28
|
-
def location=(
|
29
|
-
raise
|
30
|
-
|
31
|
-
@bridge.set_location loc.latitude, loc.longitude, loc.altitude
|
29
|
+
def location=(*)
|
30
|
+
raise Error::UnsupportedOperationError, 'The W3C standard does not currently support setting location'
|
32
31
|
end
|
32
|
+
alias_method :set_location, :location
|
33
33
|
|
34
|
-
def set_location(lat, lon, alt)
|
35
|
-
self.location = Location.new(Float(lat), Float(lon), Float(alt))
|
36
|
-
end
|
37
34
|
end # HasLocation
|
38
35
|
end # DriverExtensions
|
39
36
|
end # WebDriver
|
@@ -0,0 +1,144 @@
|
|
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
|
+
module DriverExtensions
|
23
|
+
module HasLogEvents
|
24
|
+
include Atoms
|
25
|
+
|
26
|
+
KINDS = %i[console exception mutation].freeze
|
27
|
+
|
28
|
+
#
|
29
|
+
# Registers listener to be called whenever browser receives
|
30
|
+
# a new Console API message such as console.log() or an unhandled
|
31
|
+
# exception.
|
32
|
+
#
|
33
|
+
# This currently relies on DevTools so is only supported in
|
34
|
+
# Chromium browsers.
|
35
|
+
#
|
36
|
+
# @example Collect console messages
|
37
|
+
# logs = []
|
38
|
+
# driver.on_log_event(:console) do |event|
|
39
|
+
# logs.push(event)
|
40
|
+
# end
|
41
|
+
#
|
42
|
+
# @example Collect JavaScript exceptions
|
43
|
+
# exceptions = []
|
44
|
+
# driver.on_log_event(:exception) do |event|
|
45
|
+
# exceptions.push(event)
|
46
|
+
# end
|
47
|
+
#
|
48
|
+
# @example Collect DOM mutations
|
49
|
+
# mutations = []
|
50
|
+
# driver.on_log_event(:mutation) do |event|
|
51
|
+
# mutations.push(event)
|
52
|
+
# end
|
53
|
+
#
|
54
|
+
# @param [Symbol] kind :console, :exception or :mutation
|
55
|
+
# @param [#call] block which is called when event happens
|
56
|
+
# @yieldparam [DevTools::ConsoleEvent, DevTools::ExceptionEvent, DevTools::MutationEvent]
|
57
|
+
#
|
58
|
+
|
59
|
+
def on_log_event(kind, &block)
|
60
|
+
raise Error::WebDriverError, "Don't know how to handle #{kind} events" unless KINDS.include?(kind)
|
61
|
+
|
62
|
+
enabled = log_listeners[kind].any?
|
63
|
+
log_listeners[kind] << block
|
64
|
+
return if enabled
|
65
|
+
|
66
|
+
devtools.runtime.enable
|
67
|
+
__send__("log_#{kind}_events")
|
68
|
+
end
|
69
|
+
|
70
|
+
private
|
71
|
+
|
72
|
+
def log_listeners
|
73
|
+
@log_listeners ||= Hash.new { |listeners, kind| listeners[kind] = [] }
|
74
|
+
end
|
75
|
+
|
76
|
+
def log_console_events
|
77
|
+
devtools.runtime.on(:console_api_called) do |params|
|
78
|
+
event = DevTools::ConsoleEvent.new(
|
79
|
+
type: params['type'],
|
80
|
+
timestamp: params['timestamp'],
|
81
|
+
args: params['args']
|
82
|
+
)
|
83
|
+
|
84
|
+
log_listeners[:console].each do |listener|
|
85
|
+
listener.call(event)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
def log_exception_events
|
91
|
+
devtools.runtime.on(:exception_thrown) do |params|
|
92
|
+
description = if params.dig('exceptionDetails', 'exception')
|
93
|
+
params.dig('exceptionDetails', 'exception', 'description')
|
94
|
+
else
|
95
|
+
params.dig('exceptionDetails', 'text')
|
96
|
+
end
|
97
|
+
|
98
|
+
event = DevTools::ExceptionEvent.new(
|
99
|
+
description: description,
|
100
|
+
timestamp: params['timestamp'],
|
101
|
+
stacktrace: params.dig('exceptionDetails', 'stackTrace', 'callFrames')
|
102
|
+
)
|
103
|
+
|
104
|
+
log_listeners[:exception].each do |listener|
|
105
|
+
listener.call(event)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
def log_mutation_events
|
111
|
+
devtools.page.enable
|
112
|
+
|
113
|
+
devtools.runtime.add_binding(name: '__webdriver_attribute')
|
114
|
+
execute_script(mutation_listener)
|
115
|
+
devtools.page.add_script_to_evaluate_on_new_document(source: mutation_listener)
|
116
|
+
|
117
|
+
devtools.runtime.on(:binding_called, &method(:log_mutation_event))
|
118
|
+
end
|
119
|
+
|
120
|
+
def log_mutation_event(params)
|
121
|
+
payload = JSON.parse(params['payload'])
|
122
|
+
elements = find_elements(css: "*[data-__webdriver_id='#{payload['target']}']")
|
123
|
+
return if elements.empty?
|
124
|
+
|
125
|
+
event = DevTools::MutationEvent.new(
|
126
|
+
element: elements.first,
|
127
|
+
attribute_name: payload['name'],
|
128
|
+
current_value: payload['value'],
|
129
|
+
old_value: payload['oldValue']
|
130
|
+
)
|
131
|
+
|
132
|
+
log_listeners[:mutation].each do |log_listener|
|
133
|
+
log_listener.call(event)
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
def mutation_listener
|
138
|
+
@mutation_listener ||= read_atom(:mutationListener)
|
139
|
+
end
|
140
|
+
|
141
|
+
end # HasLogEvents
|
142
|
+
end # DriverExtensions
|
143
|
+
end # WebDriver
|
144
|
+
end # Selenium
|
@@ -0,0 +1,30 @@
|
|
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
|
+
module DriverExtensions
|
23
|
+
module HasLogs
|
24
|
+
def logs
|
25
|
+
@logs ||= Logs.new(@bridge)
|
26
|
+
end
|
27
|
+
end # HasLogs
|
28
|
+
end # DriverExtensions
|
29
|
+
end # WebDriver
|
30
|
+
end # Selenium
|
@@ -38,13 +38,30 @@ module Selenium
|
|
38
38
|
# @param [Hash] conditions
|
39
39
|
# @option conditions [Integer] :latency
|
40
40
|
# @option conditions [Integer] :throughput
|
41
|
+
# @option conditions [Integer] :upload_throughput
|
42
|
+
# @option conditions [Integer] :download_throughput
|
41
43
|
# @option conditions [Boolean] :offline
|
42
44
|
#
|
43
45
|
|
44
46
|
def network_conditions=(conditions)
|
47
|
+
conditions[:latency] ||= 0
|
48
|
+
unless conditions.key?(:throughput)
|
49
|
+
conditions[:download_throughput] ||= -1
|
50
|
+
conditions[:upload_throughput] ||= -1
|
51
|
+
end
|
52
|
+
conditions[:offline] = false unless conditions.key?(:offline)
|
53
|
+
|
45
54
|
@bridge.network_conditions = conditions
|
46
55
|
end
|
47
56
|
|
57
|
+
#
|
58
|
+
# Resets Chromium network emulation settings.
|
59
|
+
#
|
60
|
+
|
61
|
+
def delete_network_conditions
|
62
|
+
@bridge.delete_network_conditions
|
63
|
+
end
|
64
|
+
|
48
65
|
end # HasNetworkConditions
|
49
66
|
end # DriverExtensions
|
50
67
|
end # WebDriver
|