WebDriver/src/WebDriver/WDUnknownCommand.class.st

14 lines
295 B
Smalltalk

"
A command could not be executed because the remote end is not aware of it.
"
Class {
#name : #WDUnknownCommand,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDUnknownCommand class >> matchesErrorCode: errCode [
^ errCode = 'unknown command'
]