Skip to content

Commit 84cc67e

Browse files
authored
[rb] Add URLs constant to update error messages (#14174)
Co-authored-by: aguspe <[email protected]>
1 parent fd5f54e commit 84cc67e

File tree

4 files changed

+26
-20
lines changed

4 files changed

+26
-20
lines changed

rb/lib/selenium/webdriver/common/error.rb

+21-17
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,29 @@ def self.for_error(error)
3737
SUPPORT_MSG = 'For documentation on this error, please visit:'
3838
ERROR_URL = 'https://www.selenium.dev/documentation/webdriver/troubleshooting/errors'
3939

40-
class WebDriverError < StandardError; end
40+
URLS = {
41+
NoSuchElementError: "#{ERROR_URL}#no-such-element-exception",
42+
StaleElementReferenceError: "#{ERROR_URL}#stale-element-reference-exception",
43+
InvalidSelectorError: "#{ERROR_URL}#invalid-selector-exception",
44+
NoSuchDriverError: "#{ERROR_URL}/driver_location"
45+
}.freeze
46+
47+
class WebDriverError < StandardError
48+
def initialize(msg = '')
49+
# Remove this conditional when all the error pages have been documented
50+
super(URLS[class_name] ? "#{msg}; #{SUPPORT_MSG} #{URLS[class_name]}" : msg)
51+
end
52+
53+
def class_name
54+
self.class.name&.split('::')&.last&.to_sym
55+
end
56+
end
4157

4258
#
4359
# An element could not be located on the page using the given search parameters.
4460
#
4561

46-
class NoSuchElementError < WebDriverError
47-
def initialize(msg = '')
48-
super("#{msg}; #{SUPPORT_MSG} #{ERROR_URL}#no-such-element-exception")
49-
end
50-
end
62+
class NoSuchElementError < WebDriverError; end
5163

5264
#
5365
# A command to switch to a frame could not be satisfied because the frame could not be found.
@@ -67,7 +79,7 @@ class UnknownCommandError < WebDriverError; end
6779

6880
class StaleElementReferenceError < WebDriverError
6981
def initialize(msg = '')
70-
super("#{msg}; #{SUPPORT_MSG} #{ERROR_URL}#stale-element-reference-exception")
82+
super("#{msg}; #{SUPPORT_MSG} #{URLS[:StaleElementReferenceError]}")
7183
end
7284
end
7385

@@ -143,11 +155,7 @@ class ScriptTimeoutError < WebDriverError; end
143155
# Argument was an invalid selector.
144156
#
145157

146-
class InvalidSelectorError < WebDriverError
147-
def initialize(msg = '')
148-
super("#{msg}; #{SUPPORT_MSG} #{ERROR_URL}#invalid-selector-exception")
149-
end
150-
end
158+
class InvalidSelectorError < WebDriverError; end
151159

152160
#
153161
# A new session could not be created.
@@ -232,11 +240,7 @@ class UnsupportedOperationError < WebDriverError; end
232240
# Indicates that driver was not specified and could not be located.
233241
#
234242

235-
class NoSuchDriverError < WebDriverError
236-
def initialize(msg = '')
237-
super("#{msg}; #{SUPPORT_MSG} #{ERROR_URL}/driver_location")
238-
end
239-
end
243+
class NoSuchDriverError < WebDriverError; end
240244
end # Error
241245
end # WebDriver
242246
end # Selenium

rb/sig/lib/selenium/webdriver/common/error.rbs

+3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ module Selenium
77

88
ERROR_URL: String
99

10+
URLS: Hash[Symbol, String]
11+
1012
class WebDriverError < StandardError
13+
def class_name: -> Symbol?
1114
end
1215

1316
class NoSuchElementError < WebDriverError

rb/spec/integration/selenium/webdriver/error_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module WebDriver
2727

2828
expect {
2929
driver.find_element(id: 'nonexistent')
30-
}.to raise_error(WebDriver::Error::NoSuchElementError)
30+
}.to raise_error(WebDriver::Error::NoSuchElementError, /#no-such-element-exception/)
3131
end
3232
end
3333
end # WebDriver

rb/spec/unit/selenium/webdriver/common/driver_finder_spec.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ module WebDriver
6363
expect {
6464
described_class.new(Options.chrome, Service.chrome).driver_path
6565
}.to output(/Exception occurred: this error/).to_stderr_from_any_process
66-
}.to raise_error(WebDriver::Error::NoSuchDriverError,
67-
/Unable to obtain chromedriver; For documentation on this error/)
66+
}.to raise_error(WebDriver::Error::NoSuchDriverError, /driver_location/)
6867
end
6968

7069
it 'creates arguments' do

0 commit comments

Comments
 (0)