We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48260ad commit 5509316Copy full SHA for 5509316
rb/lib/selenium/webdriver/common/error.rb
@@ -159,7 +159,12 @@ class IMEEngineActivationFailedError < WebDriverError; end # 31
159
#
160
161
class InvalidSelectorError < WebDriverError; end # 32
162
- # 33
+
163
+ #
164
+ # A new session could not be created.
165
166
167
+ class SessionNotCreatedError < WebDriverError; end # 33
168
169
170
# Indicates that the target provided to the actions #move method is
@@ -202,7 +207,7 @@ class MoveTargetOutOfBoundsError < WebDriverError; end # 34
202
207
IMENotAvailableError, # 30
203
208
IMEEngineActivationFailedError, # 31
204
209
InvalidSelectorError, # 32
205
- nil, # 33
210
+ SessionNotCreatedError, # 33
206
211
MoveTargetOutOfBoundsError # 34
212
]
213
0 commit comments