Skip to content

Commit

Permalink
rb - add SessionNotCreatedError
Browse files Browse the repository at this point in the history
  • Loading branch information
bayandin committed Dec 3, 2015
1 parent 48260ad commit 5509316
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 5509316

Please sign in to comment.