Skip to content

Commit 5509316

Browse files
committed
rb - add SessionNotCreatedError
1 parent 48260ad commit 5509316

File tree

1 file changed

+7
-2
lines changed
  • rb/lib/selenium/webdriver/common

1 file changed

+7
-2
lines changed

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

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,12 @@ class IMEEngineActivationFailedError < WebDriverError; end # 31
159159
#
160160

161161
class InvalidSelectorError < WebDriverError; end # 32
162-
# 33
162+
163+
#
164+
# A new session could not be created.
165+
#
166+
167+
class SessionNotCreatedError < WebDriverError; end # 33
163168

164169
#
165170
# Indicates that the target provided to the actions #move method is
@@ -202,7 +207,7 @@ class MoveTargetOutOfBoundsError < WebDriverError; end # 34
202207
IMENotAvailableError, # 30
203208
IMEEngineActivationFailedError, # 31
204209
InvalidSelectorError, # 32
205-
nil, # 33
210+
SessionNotCreatedError, # 33
206211
MoveTargetOutOfBoundsError # 34
207212
]
208213

0 commit comments

Comments
 (0)