@@ -37,17 +37,29 @@ def self.for_error(error)
37
37
SUPPORT_MSG = 'For documentation on this error, please visit:'
38
38
ERROR_URL = 'https://www.selenium.dev/documentation/webdriver/troubleshooting/errors'
39
39
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
41
57
42
58
#
43
59
# An element could not be located on the page using the given search parameters.
44
60
#
45
61
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
51
63
52
64
#
53
65
# 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
67
79
68
80
class StaleElementReferenceError < WebDriverError
69
81
def initialize ( msg = '' )
70
- super ( "#{ msg } ; #{ SUPPORT_MSG } #{ ERROR_URL } #stale-element-reference-exception " )
82
+ super ( "#{ msg } ; #{ SUPPORT_MSG } #{ URLS [ :StaleElementReferenceError ] } " )
71
83
end
72
84
end
73
85
@@ -143,11 +155,7 @@ class ScriptTimeoutError < WebDriverError; end
143
155
# Argument was an invalid selector.
144
156
#
145
157
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
151
159
152
160
#
153
161
# A new session could not be created.
@@ -232,11 +240,7 @@ class UnsupportedOperationError < WebDriverError; end
232
240
# Indicates that driver was not specified and could not be located.
233
241
#
234
242
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
240
244
end # Error
241
245
end # WebDriver
242
246
end # Selenium
0 commit comments