WebDriver/src/WebDriver/WDInvalidSessionId.class.st

14 lines
366 B
Smalltalk
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"
Occurs if the given session id is not in the list of active sessions, meaning the session either does not exist or that its not active.
"
Class {
#name : #WDInvalidSessionId,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDInvalidSessionId class >> matchesErrorCode: errCode [
^ errCode = 'invalid session id'
]