WebDriver/src/WebDriver/WDInvalidArgument.class.st

14 lines
290 B
Smalltalk

"
The arguments passed to a command are either invalid or malformed.
"
Class {
#name : #WDInvalidArgument,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDInvalidArgument class >> matchesErrorCode: errCode [
^ errCode = 'invalid argument'
]