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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3fd4b623fa86d431079ad03fad528adf52a72f477333c14ed0ed36741a4f41e6
4
- data.tar.gz: 214779166b857477353b6e9b2ebc200287a6735329cfc59f734af42bff23332f
3
+ metadata.gz: b1a797ae6892d48e11d3b340425a5965086676ede5aac24f9310a495f436beea
4
+ data.tar.gz: 84feade5ab157557839b522749b53c6dd49b4e950bb903d2aee84a0ff225b8c6
5
5
  SHA512:
6
- metadata.gz: 24f46301be793d2a21a347a75f5aafa0cc7aac2c82ee504f34cc6dad76047ef6831cb57724f7c02c4efee1debf39dfa7dc2dade342c3c0945b004b7a9651f617
7
- data.tar.gz: 9a711961bb2b3925cfb4b47a35c0cc15c47bb4b5d8480213f5ba6010e94bca64e539050f9007e7b0ef2f7e0f407bee0db0830bf970b7b1ed23b40ccba5e76ff4
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
Binary file
Binary file
Binary file
@@ -44,7 +44,7 @@ module Selenium
44
44
  type: 'pattern',
45
45
  protocol: uri.scheme || '',
46
46
  hostname: uri.host || '',
47
- port: uri.port.to_s || '',
47
+ port: uri.port.to_s,
48
48
  pathname: uri.path || '',
49
49
  search: uri.query || ''
50
50
  }
@@ -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",
@@ -77,6 +77,7 @@ module Selenium
77
77
  alias eql? ==
78
78
 
79
79
  def ftp=(value)
80
+ WebDriver.logger.deprecate('FTP proxy support', nil, id: :ftp_proxy)
80
81
  self.type = :manual
81
82
  @ftp = value
82
83
  end
@@ -19,6 +19,6 @@
19
19
 
20
20
  module Selenium
21
21
  module WebDriver
22
- VERSION = '4.33.0'
22
+ VERSION = '4.34.0'
23
23
  end # WebDriver
24
24
  end # Selenium
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.33.0
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-05-23 00:00:00.000000000 Z
13
+ date: 2025-06-29 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: base64