Skip to content

Commit

Permalink
Merge pull request SeleniumHQ#1339 from bayandin/rb-add-error-for-33
Browse files Browse the repository at this point in the history
Signed-off-by: Titus Fortner <titusfortner@gmail.com>
  • Loading branch information
titusfortner committed Dec 3, 2015
2 parents 293e7dc + 5509316 commit dfce195
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions rb/lib/selenium/webdriver/common/error.rb
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,12 @@ class IMEEngineActivationFailedError < WebDriverError; end # 31
#

class InvalidSelectorError < WebDriverError; end # 32
# 33

#
# A new session could not be created.
#

class SessionNotCreatedError < WebDriverError; end # 33

#
# Indicates that the target provided to the actions #move method is
Expand Down Expand Up @@ -202,7 +207,7 @@ class MoveTargetOutOfBoundsError < WebDriverError; end # 34
IMENotAvailableError, # 30
IMEEngineActivationFailedError, # 31
InvalidSelectorError, # 32
nil, # 33
SessionNotCreatedError, # 33
MoveTargetOutOfBoundsError # 34
]

Expand Down

0 comments on commit dfce195

Please sign in to comment.