selenium-webdriver 4.33.0 → 4.34.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 +6 -0
- 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/webdriver/bidi/network/url_pattern.rb +1 -1
- data/lib/selenium/webdriver/common/child_process.rb +4 -0
- data/lib/selenium/webdriver/common/keys.rb +9 -0
- data/lib/selenium/webdriver/common/proxy.rb +1 -0
- data/lib/selenium/webdriver/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b1a797ae6892d48e11d3b340425a5965086676ede5aac24f9310a495f436beea
|
4
|
+
data.tar.gz: 84feade5ab157557839b522749b53c6dd49b4e950bb903d2aee84a0ff225b8c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e077bca62b47764dac3944c6595a638e849894f5c1a6b38f16994a09151c838d324d5b4efd95d29b59b4c2ebc7be36f140643667aafd1cb624c9f382233f755
|
7
|
+
data.tar.gz: 54f272b0a56d9ad697e9f7f9c56fd1f954c50d04e2764b79f82cdc02cad1879469055b207b8f088dc8426e62761b5f535b59fdd329d0402a1062ae15a0d41636
|
data/CHANGES
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
4.34.0 (2025-06-25)
|
2
|
+
=========================
|
3
|
+
* Add CDP for Chrome 138 and remove 135
|
4
|
+
* Fix child process terminate method when a process is already terminated (#15789)
|
5
|
+
* Deprecate ftp proxy (#15926)
|
6
|
+
|
1
7
|
4.33.0 (2025-05-23)
|
2
8
|
=========================
|
3
9
|
* Add CDP for Chrome 137 and remove 134
|
data/bin/linux/selenium-manager
CHANGED
Binary file
|
data/bin/macos/selenium-manager
CHANGED
Binary file
|
Binary file
|
@@ -122,10 +122,14 @@ module Selenium
|
|
122
122
|
|
123
123
|
def terminate(pid)
|
124
124
|
Process.kill(SIGTERM, pid)
|
125
|
+
rescue Errno::ECHILD, Errno::ESRCH
|
126
|
+
# Process does not exist, nothing to terminate
|
125
127
|
end
|
126
128
|
|
127
129
|
def kill(pid)
|
128
130
|
Process.kill(SIGKILL, pid)
|
131
|
+
rescue Errno::ECHILD, Errno::ESRCH
|
132
|
+
# Process does not exist, nothing to kill
|
129
133
|
end
|
130
134
|
|
131
135
|
def waitpid2(pid, flags = 0)
|
@@ -75,6 +75,13 @@ module Selenium
|
|
75
75
|
subtract: "\ue027",
|
76
76
|
decimal: "\ue028",
|
77
77
|
divide: "\ue029",
|
78
|
+
numpad_multiply: "\ue024",
|
79
|
+
numpad_add: "\ue025",
|
80
|
+
numpad_comma: "\ue026",
|
81
|
+
numpad_subtract: "\ue027",
|
82
|
+
numpad_decimal: "\ue028",
|
83
|
+
numpad_divide: "\ue029",
|
84
|
+
numpad_enter: "\ue007",
|
78
85
|
f1: "\ue031",
|
79
86
|
f2: "\ue032",
|
80
87
|
f3: "\ue033",
|
@@ -95,6 +102,8 @@ module Selenium
|
|
95
102
|
right_control: "\ue051",
|
96
103
|
right_alt: "\ue052",
|
97
104
|
right_meta: "\ue053",
|
105
|
+
options: "\ue052",
|
106
|
+
function: "\ue051", # macOS Function key, same as right_control
|
98
107
|
numpad_page_up: "\ue054",
|
99
108
|
numpad_page_down: "\ue055",
|
100
109
|
numpad_end: "\ue056",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: selenium-webdriver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.34.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: 2025-
|
13
|
+
date: 2025-06-29 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: base64
|