WebDriver/src/WebDriver/WDScriptTimeout.class.st

14 lines
275 B
Smalltalk

"
An operation did not complete before its timeout expired.
"
Class {
#name : #WDScriptTimeout,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDScriptTimeout class >> matchesErrorCode: errCode [
^ errCode = 'script timeout'
]